increase 1.262.0 → 1.264.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +26 -0
- data/README.md +1 -1
- data/lib/increase/models/declined_transaction.rb +9 -9
- data/lib/increase/models/fednow_transfer_create_params.rb +1 -9
- data/lib/increase/models/inbound_real_time_payments_transfer.rb +9 -9
- data/lib/increase/models/real_time_payments_transfer.rb +22 -22
- data/lib/increase/models/real_time_payments_transfer_create_params.rb +29 -16
- data/lib/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rb +9 -9
- data/lib/increase/models/transaction.rb +29 -29
- data/lib/increase/resources/fednow_transfers.rb +1 -3
- data/lib/increase/resources/real_time_payments_transfers.rb +9 -5
- data/lib/increase/resources/simulations/inbound_real_time_payments_transfers.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/declined_transaction.rbi +11 -11
- data/rbi/increase/models/fednow_transfer_create_params.rbi +0 -8
- data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +11 -11
- data/rbi/increase/models/real_time_payments_transfer.rbi +27 -27
- data/rbi/increase/models/real_time_payments_transfer_create_params.rbi +34 -18
- data/rbi/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rbi +11 -11
- data/rbi/increase/models/transaction.rbi +34 -34
- data/rbi/increase/resources/fednow_transfers.rbi +0 -3
- data/rbi/increase/resources/real_time_payments_transfers.rbi +11 -8
- data/rbi/increase/resources/simulations/inbound_real_time_payments_transfers.rbi +3 -3
- data/sig/increase/models/declined_transaction.rbs +8 -8
- data/sig/increase/models/fednow_transfer_create_params.rbs +0 -5
- data/sig/increase/models/inbound_real_time_payments_transfer.rbs +8 -8
- data/sig/increase/models/real_time_payments_transfer.rbs +17 -17
- data/sig/increase/models/real_time_payments_transfer_create_params.rbs +19 -5
- data/sig/increase/models/simulations/inbound_real_time_payments_transfer_create_params.rbs +8 -8
- data/sig/increase/models/transaction.rbs +25 -25
- data/sig/increase/resources/fednow_transfers.rbs +0 -1
- data/sig/increase/resources/real_time_payments_transfers.rbs +3 -1
- data/sig/increase/resources/simulations/inbound_real_time_payments_transfers.rbs +1 -1
- metadata +2 -2
|
@@ -8,13 +8,15 @@ module Increase
|
|
|
8
8
|
params(
|
|
9
9
|
amount: Integer,
|
|
10
10
|
creditor_name: String,
|
|
11
|
-
remittance_information: String,
|
|
12
11
|
source_account_number_id: String,
|
|
12
|
+
unstructured_remittance_information: String,
|
|
13
|
+
account_number: String,
|
|
13
14
|
debtor_name: String,
|
|
14
15
|
destination_account_number: String,
|
|
15
16
|
destination_routing_number: String,
|
|
16
17
|
external_account_id: String,
|
|
17
18
|
require_approval: T::Boolean,
|
|
19
|
+
routing_number: String,
|
|
18
20
|
ultimate_creditor_name: String,
|
|
19
21
|
ultimate_debtor_name: String,
|
|
20
22
|
request_options: Increase::RequestOptions::OrHash
|
|
@@ -26,24 +28,25 @@ module Increase
|
|
|
26
28
|
amount:,
|
|
27
29
|
# The name of the transfer's recipient.
|
|
28
30
|
creditor_name:,
|
|
29
|
-
# Unstructured information that will show on the recipient's bank statement.
|
|
30
|
-
remittance_information:,
|
|
31
31
|
# The identifier of the Account Number from which to send the transfer.
|
|
32
32
|
source_account_number_id:,
|
|
33
|
+
# Unstructured information that will show on the recipient's bank statement.
|
|
34
|
+
unstructured_remittance_information:,
|
|
35
|
+
# The destination account number.
|
|
36
|
+
account_number: nil,
|
|
33
37
|
# The name of the transfer's sender. If not provided, defaults to the name of the
|
|
34
38
|
# account's entity.
|
|
35
39
|
debtor_name: nil,
|
|
36
|
-
# The destination account number.
|
|
37
40
|
destination_account_number: nil,
|
|
38
|
-
# The destination American Bankers' Association (ABA) Routing Transit Number
|
|
39
|
-
# (RTN).
|
|
40
41
|
destination_routing_number: nil,
|
|
41
42
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
42
|
-
# provided, `
|
|
43
|
-
# absent.
|
|
43
|
+
# provided, `account_number` and `routing_number` must be absent.
|
|
44
44
|
external_account_id: nil,
|
|
45
45
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
46
46
|
require_approval: nil,
|
|
47
|
+
# The destination American Bankers' Association (ABA) Routing Transit Number
|
|
48
|
+
# (RTN).
|
|
49
|
+
routing_number: nil,
|
|
47
50
|
# The name of the ultimate recipient of the transfer. Set this if the creditor is
|
|
48
51
|
# an intermediary receiving the payment for someone else.
|
|
49
52
|
ultimate_creditor_name: nil,
|
|
@@ -14,8 +14,8 @@ module Increase
|
|
|
14
14
|
debtor_account_number: String,
|
|
15
15
|
debtor_name: String,
|
|
16
16
|
debtor_routing_number: String,
|
|
17
|
-
remittance_information: String,
|
|
18
17
|
request_for_payment_id: String,
|
|
18
|
+
unstructured_remittance_information: String,
|
|
19
19
|
request_options: Increase::RequestOptions::OrHash
|
|
20
20
|
).returns(Increase::InboundRealTimePaymentsTransfer)
|
|
21
21
|
end
|
|
@@ -31,10 +31,10 @@ module Increase
|
|
|
31
31
|
debtor_name: nil,
|
|
32
32
|
# The routing number of the account that sent the transfer.
|
|
33
33
|
debtor_routing_number: nil,
|
|
34
|
-
# Additional information included with the transfer.
|
|
35
|
-
remittance_information: nil,
|
|
36
34
|
# The identifier of a pending Request for Payment that this transfer will fulfill.
|
|
37
35
|
request_for_payment_id: nil,
|
|
36
|
+
# Additional information included with the transfer.
|
|
37
|
+
unstructured_remittance_information: nil,
|
|
38
38
|
request_options: {}
|
|
39
39
|
)
|
|
40
40
|
end
|
|
@@ -1633,9 +1633,9 @@ module Increase
|
|
|
1633
1633
|
debtor_name: String,
|
|
1634
1634
|
debtor_routing_number: String,
|
|
1635
1635
|
reason: Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
|
1636
|
-
remittance_information: String?,
|
|
1637
1636
|
transaction_identification: String,
|
|
1638
|
-
transfer_id: String
|
|
1637
|
+
transfer_id: String,
|
|
1638
|
+
unstructured_remittance_information: String?
|
|
1639
1639
|
}
|
|
1640
1640
|
|
|
1641
1641
|
class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
|
|
@@ -1653,12 +1653,12 @@ module Increase
|
|
|
1653
1653
|
|
|
1654
1654
|
attr_accessor reason: Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::reason
|
|
1655
1655
|
|
|
1656
|
-
attr_accessor remittance_information: String?
|
|
1657
|
-
|
|
1658
1656
|
attr_accessor transaction_identification: String
|
|
1659
1657
|
|
|
1660
1658
|
attr_accessor transfer_id: String
|
|
1661
1659
|
|
|
1660
|
+
attr_accessor unstructured_remittance_information: String?
|
|
1661
|
+
|
|
1662
1662
|
def initialize: (
|
|
1663
1663
|
amount: Integer,
|
|
1664
1664
|
creditor_name: String,
|
|
@@ -1667,9 +1667,9 @@ module Increase
|
|
|
1667
1667
|
debtor_name: String,
|
|
1668
1668
|
debtor_routing_number: String,
|
|
1669
1669
|
reason: Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
|
1670
|
-
remittance_information: String?,
|
|
1671
1670
|
transaction_identification: String,
|
|
1672
|
-
transfer_id: String
|
|
1671
|
+
transfer_id: String,
|
|
1672
|
+
unstructured_remittance_information: String?
|
|
1673
1673
|
) -> void
|
|
1674
1674
|
|
|
1675
1675
|
def to_hash: -> {
|
|
@@ -1680,9 +1680,9 @@ module Increase
|
|
|
1680
1680
|
debtor_name: String,
|
|
1681
1681
|
debtor_routing_number: String,
|
|
1682
1682
|
reason: Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
|
1683
|
-
remittance_information: String?,
|
|
1684
1683
|
transaction_identification: String,
|
|
1685
|
-
transfer_id: String
|
|
1684
|
+
transfer_id: String,
|
|
1685
|
+
unstructured_remittance_information: String?
|
|
1686
1686
|
}
|
|
1687
1687
|
|
|
1688
1688
|
type currency = :USD
|
|
@@ -2,7 +2,6 @@ module Increase
|
|
|
2
2
|
module Models
|
|
3
3
|
type fednow_transfer_create_params =
|
|
4
4
|
{
|
|
5
|
-
account_id: String,
|
|
6
5
|
amount: Integer,
|
|
7
6
|
creditor_name: String,
|
|
8
7
|
debtor_name: String,
|
|
@@ -21,8 +20,6 @@ module Increase
|
|
|
21
20
|
extend Increase::Internal::Type::RequestParameters::Converter
|
|
22
21
|
include Increase::Internal::Type::RequestParameters
|
|
23
22
|
|
|
24
|
-
attr_accessor account_id: String
|
|
25
|
-
|
|
26
23
|
attr_accessor amount: Integer
|
|
27
24
|
|
|
28
25
|
attr_accessor creditor_name: String
|
|
@@ -62,7 +59,6 @@ module Increase
|
|
|
62
59
|
def routing_number=: (String) -> String
|
|
63
60
|
|
|
64
61
|
def initialize: (
|
|
65
|
-
account_id: String,
|
|
66
62
|
amount: Integer,
|
|
67
63
|
creditor_name: String,
|
|
68
64
|
debtor_name: String,
|
|
@@ -78,7 +74,6 @@ module Increase
|
|
|
78
74
|
) -> void
|
|
79
75
|
|
|
80
76
|
def to_hash: -> {
|
|
81
|
-
account_id: String,
|
|
82
77
|
amount: Integer,
|
|
83
78
|
creditor_name: String,
|
|
84
79
|
debtor_name: String,
|
|
@@ -14,10 +14,10 @@ module Increase
|
|
|
14
14
|
debtor_name: String,
|
|
15
15
|
debtor_routing_number: String,
|
|
16
16
|
decline: Increase::InboundRealTimePaymentsTransfer::Decline?,
|
|
17
|
-
remittance_information: String?,
|
|
18
17
|
status: Increase::Models::InboundRealTimePaymentsTransfer::status,
|
|
19
18
|
transaction_identification: String,
|
|
20
|
-
type: Increase::Models::InboundRealTimePaymentsTransfer::type_
|
|
19
|
+
type: Increase::Models::InboundRealTimePaymentsTransfer::type_,
|
|
20
|
+
unstructured_remittance_information: String?
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
class InboundRealTimePaymentsTransfer < Increase::Internal::Type::BaseModel
|
|
@@ -45,14 +45,14 @@ module Increase
|
|
|
45
45
|
|
|
46
46
|
attr_accessor decline: Increase::InboundRealTimePaymentsTransfer::Decline?
|
|
47
47
|
|
|
48
|
-
attr_accessor remittance_information: String?
|
|
49
|
-
|
|
50
48
|
attr_accessor status: Increase::Models::InboundRealTimePaymentsTransfer::status
|
|
51
49
|
|
|
52
50
|
attr_accessor transaction_identification: String
|
|
53
51
|
|
|
54
52
|
attr_accessor type: Increase::Models::InboundRealTimePaymentsTransfer::type_
|
|
55
53
|
|
|
54
|
+
attr_accessor unstructured_remittance_information: String?
|
|
55
|
+
|
|
56
56
|
def initialize: (
|
|
57
57
|
id: String,
|
|
58
58
|
account_id: String,
|
|
@@ -66,10 +66,10 @@ module Increase
|
|
|
66
66
|
debtor_name: String,
|
|
67
67
|
debtor_routing_number: String,
|
|
68
68
|
decline: Increase::InboundRealTimePaymentsTransfer::Decline?,
|
|
69
|
-
remittance_information: String?,
|
|
70
69
|
status: Increase::Models::InboundRealTimePaymentsTransfer::status,
|
|
71
70
|
transaction_identification: String,
|
|
72
|
-
type: Increase::Models::InboundRealTimePaymentsTransfer::type_
|
|
71
|
+
type: Increase::Models::InboundRealTimePaymentsTransfer::type_,
|
|
72
|
+
unstructured_remittance_information: String?
|
|
73
73
|
) -> void
|
|
74
74
|
|
|
75
75
|
def to_hash: -> {
|
|
@@ -85,10 +85,10 @@ module Increase
|
|
|
85
85
|
debtor_name: String,
|
|
86
86
|
debtor_routing_number: String,
|
|
87
87
|
decline: Increase::InboundRealTimePaymentsTransfer::Decline?,
|
|
88
|
-
remittance_information: String?,
|
|
89
88
|
status: Increase::Models::InboundRealTimePaymentsTransfer::status,
|
|
90
89
|
transaction_identification: String,
|
|
91
|
-
type: Increase::Models::InboundRealTimePaymentsTransfer::type_
|
|
90
|
+
type: Increase::Models::InboundRealTimePaymentsTransfer::type_,
|
|
91
|
+
unstructured_remittance_information: String?
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
type confirmation = { confirmed_at: Time, transaction_id: String }
|
|
@@ -4,6 +4,7 @@ module Increase
|
|
|
4
4
|
{
|
|
5
5
|
id: String,
|
|
6
6
|
account_id: String,
|
|
7
|
+
account_number: String,
|
|
7
8
|
acknowledgement: Increase::RealTimePaymentsTransfer::Acknowledgement?,
|
|
8
9
|
amount: Integer,
|
|
9
10
|
approval: Increase::RealTimePaymentsTransfer::Approval?,
|
|
@@ -13,20 +14,19 @@ module Increase
|
|
|
13
14
|
creditor_name: String,
|
|
14
15
|
currency: Increase::Models::RealTimePaymentsTransfer::currency,
|
|
15
16
|
debtor_name: String?,
|
|
16
|
-
destination_account_number: String,
|
|
17
|
-
destination_routing_number: String,
|
|
18
17
|
external_account_id: String?,
|
|
19
18
|
idempotency_key: String?,
|
|
20
19
|
pending_transaction_id: String?,
|
|
21
20
|
rejection: Increase::RealTimePaymentsTransfer::Rejection?,
|
|
22
|
-
|
|
21
|
+
routing_number: String,
|
|
23
22
|
source_account_number_id: String,
|
|
24
23
|
status: Increase::Models::RealTimePaymentsTransfer::status,
|
|
25
24
|
submission: Increase::RealTimePaymentsTransfer::Submission?,
|
|
26
25
|
transaction_id: String?,
|
|
27
26
|
type: Increase::Models::RealTimePaymentsTransfer::type_,
|
|
28
27
|
ultimate_creditor_name: String?,
|
|
29
|
-
ultimate_debtor_name: String
|
|
28
|
+
ultimate_debtor_name: String?,
|
|
29
|
+
unstructured_remittance_information: String
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
class RealTimePaymentsTransfer < Increase::Internal::Type::BaseModel
|
|
@@ -34,6 +34,8 @@ module Increase
|
|
|
34
34
|
|
|
35
35
|
attr_accessor account_id: String
|
|
36
36
|
|
|
37
|
+
attr_accessor account_number: String
|
|
38
|
+
|
|
37
39
|
attr_accessor acknowledgement: Increase::RealTimePaymentsTransfer::Acknowledgement?
|
|
38
40
|
|
|
39
41
|
attr_accessor amount: Integer
|
|
@@ -52,10 +54,6 @@ module Increase
|
|
|
52
54
|
|
|
53
55
|
attr_accessor debtor_name: String?
|
|
54
56
|
|
|
55
|
-
attr_accessor destination_account_number: String
|
|
56
|
-
|
|
57
|
-
attr_accessor destination_routing_number: String
|
|
58
|
-
|
|
59
57
|
attr_accessor external_account_id: String?
|
|
60
58
|
|
|
61
59
|
attr_accessor idempotency_key: String?
|
|
@@ -64,7 +62,7 @@ module Increase
|
|
|
64
62
|
|
|
65
63
|
attr_accessor rejection: Increase::RealTimePaymentsTransfer::Rejection?
|
|
66
64
|
|
|
67
|
-
attr_accessor
|
|
65
|
+
attr_accessor routing_number: String
|
|
68
66
|
|
|
69
67
|
attr_accessor source_account_number_id: String
|
|
70
68
|
|
|
@@ -80,9 +78,12 @@ module Increase
|
|
|
80
78
|
|
|
81
79
|
attr_accessor ultimate_debtor_name: String?
|
|
82
80
|
|
|
81
|
+
attr_accessor unstructured_remittance_information: String
|
|
82
|
+
|
|
83
83
|
def initialize: (
|
|
84
84
|
id: String,
|
|
85
85
|
account_id: String,
|
|
86
|
+
account_number: String,
|
|
86
87
|
acknowledgement: Increase::RealTimePaymentsTransfer::Acknowledgement?,
|
|
87
88
|
amount: Integer,
|
|
88
89
|
approval: Increase::RealTimePaymentsTransfer::Approval?,
|
|
@@ -92,25 +93,25 @@ module Increase
|
|
|
92
93
|
creditor_name: String,
|
|
93
94
|
currency: Increase::Models::RealTimePaymentsTransfer::currency,
|
|
94
95
|
debtor_name: String?,
|
|
95
|
-
destination_account_number: String,
|
|
96
|
-
destination_routing_number: String,
|
|
97
96
|
external_account_id: String?,
|
|
98
97
|
idempotency_key: String?,
|
|
99
98
|
pending_transaction_id: String?,
|
|
100
99
|
rejection: Increase::RealTimePaymentsTransfer::Rejection?,
|
|
101
|
-
|
|
100
|
+
routing_number: String,
|
|
102
101
|
source_account_number_id: String,
|
|
103
102
|
status: Increase::Models::RealTimePaymentsTransfer::status,
|
|
104
103
|
submission: Increase::RealTimePaymentsTransfer::Submission?,
|
|
105
104
|
transaction_id: String?,
|
|
106
105
|
type: Increase::Models::RealTimePaymentsTransfer::type_,
|
|
107
106
|
ultimate_creditor_name: String?,
|
|
108
|
-
ultimate_debtor_name: String
|
|
107
|
+
ultimate_debtor_name: String?,
|
|
108
|
+
unstructured_remittance_information: String
|
|
109
109
|
) -> void
|
|
110
110
|
|
|
111
111
|
def to_hash: -> {
|
|
112
112
|
id: String,
|
|
113
113
|
account_id: String,
|
|
114
|
+
account_number: String,
|
|
114
115
|
acknowledgement: Increase::RealTimePaymentsTransfer::Acknowledgement?,
|
|
115
116
|
amount: Integer,
|
|
116
117
|
approval: Increase::RealTimePaymentsTransfer::Approval?,
|
|
@@ -120,20 +121,19 @@ module Increase
|
|
|
120
121
|
creditor_name: String,
|
|
121
122
|
currency: Increase::Models::RealTimePaymentsTransfer::currency,
|
|
122
123
|
debtor_name: String?,
|
|
123
|
-
destination_account_number: String,
|
|
124
|
-
destination_routing_number: String,
|
|
125
124
|
external_account_id: String?,
|
|
126
125
|
idempotency_key: String?,
|
|
127
126
|
pending_transaction_id: String?,
|
|
128
127
|
rejection: Increase::RealTimePaymentsTransfer::Rejection?,
|
|
129
|
-
|
|
128
|
+
routing_number: String,
|
|
130
129
|
source_account_number_id: String,
|
|
131
130
|
status: Increase::Models::RealTimePaymentsTransfer::status,
|
|
132
131
|
submission: Increase::RealTimePaymentsTransfer::Submission?,
|
|
133
132
|
transaction_id: String?,
|
|
134
133
|
type: Increase::Models::RealTimePaymentsTransfer::type_,
|
|
135
134
|
ultimate_creditor_name: String?,
|
|
136
|
-
ultimate_debtor_name: String
|
|
135
|
+
ultimate_debtor_name: String?,
|
|
136
|
+
unstructured_remittance_information: String
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
type acknowledgement = { acknowledged_at: Time }
|
|
@@ -4,13 +4,15 @@ module Increase
|
|
|
4
4
|
{
|
|
5
5
|
amount: Integer,
|
|
6
6
|
creditor_name: String,
|
|
7
|
-
remittance_information: String,
|
|
8
7
|
source_account_number_id: String,
|
|
8
|
+
unstructured_remittance_information: String,
|
|
9
|
+
account_number: String,
|
|
9
10
|
debtor_name: String,
|
|
10
11
|
destination_account_number: String,
|
|
11
12
|
destination_routing_number: String,
|
|
12
13
|
external_account_id: String,
|
|
13
14
|
require_approval: bool,
|
|
15
|
+
routing_number: String,
|
|
14
16
|
ultimate_creditor_name: String,
|
|
15
17
|
ultimate_debtor_name: String
|
|
16
18
|
}
|
|
@@ -24,10 +26,14 @@ module Increase
|
|
|
24
26
|
|
|
25
27
|
attr_accessor creditor_name: String
|
|
26
28
|
|
|
27
|
-
attr_accessor remittance_information: String
|
|
28
|
-
|
|
29
29
|
attr_accessor source_account_number_id: String
|
|
30
30
|
|
|
31
|
+
attr_accessor unstructured_remittance_information: String
|
|
32
|
+
|
|
33
|
+
attr_reader account_number: String?
|
|
34
|
+
|
|
35
|
+
def account_number=: (String) -> String
|
|
36
|
+
|
|
31
37
|
attr_reader debtor_name: String?
|
|
32
38
|
|
|
33
39
|
def debtor_name=: (String) -> String
|
|
@@ -48,6 +54,10 @@ module Increase
|
|
|
48
54
|
|
|
49
55
|
def require_approval=: (bool) -> bool
|
|
50
56
|
|
|
57
|
+
attr_reader routing_number: String?
|
|
58
|
+
|
|
59
|
+
def routing_number=: (String) -> String
|
|
60
|
+
|
|
51
61
|
attr_reader ultimate_creditor_name: String?
|
|
52
62
|
|
|
53
63
|
def ultimate_creditor_name=: (String) -> String
|
|
@@ -59,13 +69,15 @@ module Increase
|
|
|
59
69
|
def initialize: (
|
|
60
70
|
amount: Integer,
|
|
61
71
|
creditor_name: String,
|
|
62
|
-
remittance_information: String,
|
|
63
72
|
source_account_number_id: String,
|
|
73
|
+
unstructured_remittance_information: String,
|
|
74
|
+
?account_number: String,
|
|
64
75
|
?debtor_name: String,
|
|
65
76
|
?destination_account_number: String,
|
|
66
77
|
?destination_routing_number: String,
|
|
67
78
|
?external_account_id: String,
|
|
68
79
|
?require_approval: bool,
|
|
80
|
+
?routing_number: String,
|
|
69
81
|
?ultimate_creditor_name: String,
|
|
70
82
|
?ultimate_debtor_name: String,
|
|
71
83
|
?request_options: Increase::request_opts
|
|
@@ -74,13 +86,15 @@ module Increase
|
|
|
74
86
|
def to_hash: -> {
|
|
75
87
|
amount: Integer,
|
|
76
88
|
creditor_name: String,
|
|
77
|
-
remittance_information: String,
|
|
78
89
|
source_account_number_id: String,
|
|
90
|
+
unstructured_remittance_information: String,
|
|
91
|
+
account_number: String,
|
|
79
92
|
debtor_name: String,
|
|
80
93
|
destination_account_number: String,
|
|
81
94
|
destination_routing_number: String,
|
|
82
95
|
external_account_id: String,
|
|
83
96
|
require_approval: bool,
|
|
97
|
+
routing_number: String,
|
|
84
98
|
ultimate_creditor_name: String,
|
|
85
99
|
ultimate_debtor_name: String,
|
|
86
100
|
request_options: Increase::RequestOptions
|
|
@@ -8,8 +8,8 @@ module Increase
|
|
|
8
8
|
debtor_account_number: String,
|
|
9
9
|
debtor_name: String,
|
|
10
10
|
debtor_routing_number: String,
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
request_for_payment_id: String,
|
|
12
|
+
unstructured_remittance_information: String
|
|
13
13
|
}
|
|
14
14
|
& Increase::Internal::Type::request_parameters
|
|
15
15
|
|
|
@@ -33,22 +33,22 @@ module Increase
|
|
|
33
33
|
|
|
34
34
|
def debtor_routing_number=: (String) -> String
|
|
35
35
|
|
|
36
|
-
attr_reader remittance_information: String?
|
|
37
|
-
|
|
38
|
-
def remittance_information=: (String) -> String
|
|
39
|
-
|
|
40
36
|
attr_reader request_for_payment_id: String?
|
|
41
37
|
|
|
42
38
|
def request_for_payment_id=: (String) -> String
|
|
43
39
|
|
|
40
|
+
attr_reader unstructured_remittance_information: String?
|
|
41
|
+
|
|
42
|
+
def unstructured_remittance_information=: (String) -> String
|
|
43
|
+
|
|
44
44
|
def initialize: (
|
|
45
45
|
account_number_id: String,
|
|
46
46
|
amount: Integer,
|
|
47
47
|
?debtor_account_number: String,
|
|
48
48
|
?debtor_name: String,
|
|
49
49
|
?debtor_routing_number: String,
|
|
50
|
-
?remittance_information: String,
|
|
51
50
|
?request_for_payment_id: String,
|
|
51
|
+
?unstructured_remittance_information: String,
|
|
52
52
|
?request_options: Increase::request_opts
|
|
53
53
|
) -> void
|
|
54
54
|
|
|
@@ -58,8 +58,8 @@ module Increase
|
|
|
58
58
|
debtor_account_number: String,
|
|
59
59
|
debtor_name: String,
|
|
60
60
|
debtor_routing_number: String,
|
|
61
|
-
remittance_information: String,
|
|
62
61
|
request_for_payment_id: String,
|
|
62
|
+
unstructured_remittance_information: String,
|
|
63
63
|
request_options: Increase::RequestOptions
|
|
64
64
|
}
|
|
65
65
|
end
|
|
@@ -4653,9 +4653,9 @@ module Increase
|
|
|
4653
4653
|
debtor_account_number: String,
|
|
4654
4654
|
debtor_name: String,
|
|
4655
4655
|
debtor_routing_number: String,
|
|
4656
|
-
remittance_information: String?,
|
|
4657
4656
|
transaction_identification: String,
|
|
4658
|
-
transfer_id: String
|
|
4657
|
+
transfer_id: String,
|
|
4658
|
+
unstructured_remittance_information: String?
|
|
4659
4659
|
}
|
|
4660
4660
|
|
|
4661
4661
|
class InboundRealTimePaymentsTransferConfirmation < Increase::Internal::Type::BaseModel
|
|
@@ -4671,12 +4671,12 @@ module Increase
|
|
|
4671
4671
|
|
|
4672
4672
|
attr_accessor debtor_routing_number: String
|
|
4673
4673
|
|
|
4674
|
-
attr_accessor remittance_information: String?
|
|
4675
|
-
|
|
4676
4674
|
attr_accessor transaction_identification: String
|
|
4677
4675
|
|
|
4678
4676
|
attr_accessor transfer_id: String
|
|
4679
4677
|
|
|
4678
|
+
attr_accessor unstructured_remittance_information: String?
|
|
4679
|
+
|
|
4680
4680
|
def initialize: (
|
|
4681
4681
|
amount: Integer,
|
|
4682
4682
|
creditor_name: String,
|
|
@@ -4684,9 +4684,9 @@ module Increase
|
|
|
4684
4684
|
debtor_account_number: String,
|
|
4685
4685
|
debtor_name: String,
|
|
4686
4686
|
debtor_routing_number: String,
|
|
4687
|
-
remittance_information: String?,
|
|
4688
4687
|
transaction_identification: String,
|
|
4689
|
-
transfer_id: String
|
|
4688
|
+
transfer_id: String,
|
|
4689
|
+
unstructured_remittance_information: String?
|
|
4690
4690
|
) -> void
|
|
4691
4691
|
|
|
4692
4692
|
def to_hash: -> {
|
|
@@ -4696,9 +4696,9 @@ module Increase
|
|
|
4696
4696
|
debtor_account_number: String,
|
|
4697
4697
|
debtor_name: String,
|
|
4698
4698
|
debtor_routing_number: String,
|
|
4699
|
-
remittance_information: String?,
|
|
4700
4699
|
transaction_identification: String,
|
|
4701
|
-
transfer_id: String
|
|
4700
|
+
transfer_id: String,
|
|
4701
|
+
unstructured_remittance_information: String?
|
|
4702
4702
|
}
|
|
4703
4703
|
|
|
4704
4704
|
type currency = :USD
|
|
@@ -5079,38 +5079,38 @@ module Increase
|
|
|
5079
5079
|
|
|
5080
5080
|
type real_time_payments_transfer_acknowledgement =
|
|
5081
5081
|
{
|
|
5082
|
+
account_number: String,
|
|
5082
5083
|
amount: Integer,
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
transfer_id: String
|
|
5084
|
+
routing_number: String,
|
|
5085
|
+
transfer_id: String,
|
|
5086
|
+
unstructured_remittance_information: String
|
|
5087
5087
|
}
|
|
5088
5088
|
|
|
5089
5089
|
class RealTimePaymentsTransferAcknowledgement < Increase::Internal::Type::BaseModel
|
|
5090
|
-
attr_accessor
|
|
5091
|
-
|
|
5092
|
-
attr_accessor destination_account_number: String
|
|
5090
|
+
attr_accessor account_number: String
|
|
5093
5091
|
|
|
5094
|
-
attr_accessor
|
|
5092
|
+
attr_accessor amount: Integer
|
|
5095
5093
|
|
|
5096
|
-
attr_accessor
|
|
5094
|
+
attr_accessor routing_number: String
|
|
5097
5095
|
|
|
5098
5096
|
attr_accessor transfer_id: String
|
|
5099
5097
|
|
|
5098
|
+
attr_accessor unstructured_remittance_information: String
|
|
5099
|
+
|
|
5100
5100
|
def initialize: (
|
|
5101
|
+
account_number: String,
|
|
5101
5102
|
amount: Integer,
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
transfer_id: String
|
|
5103
|
+
routing_number: String,
|
|
5104
|
+
transfer_id: String,
|
|
5105
|
+
unstructured_remittance_information: String
|
|
5106
5106
|
) -> void
|
|
5107
5107
|
|
|
5108
5108
|
def to_hash: -> {
|
|
5109
|
+
account_number: String,
|
|
5109
5110
|
amount: Integer,
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
transfer_id: String
|
|
5111
|
+
routing_number: String,
|
|
5112
|
+
transfer_id: String,
|
|
5113
|
+
unstructured_remittance_information: String
|
|
5114
5114
|
}
|
|
5115
5115
|
end
|
|
5116
5116
|
|
|
@@ -4,13 +4,15 @@ module Increase
|
|
|
4
4
|
def create: (
|
|
5
5
|
amount: Integer,
|
|
6
6
|
creditor_name: String,
|
|
7
|
-
remittance_information: String,
|
|
8
7
|
source_account_number_id: String,
|
|
8
|
+
unstructured_remittance_information: String,
|
|
9
|
+
?account_number: String,
|
|
9
10
|
?debtor_name: String,
|
|
10
11
|
?destination_account_number: String,
|
|
11
12
|
?destination_routing_number: String,
|
|
12
13
|
?external_account_id: String,
|
|
13
14
|
?require_approval: bool,
|
|
15
|
+
?routing_number: String,
|
|
14
16
|
?ultimate_creditor_name: String,
|
|
15
17
|
?ultimate_debtor_name: String,
|
|
16
18
|
?request_options: Increase::request_opts
|
|
@@ -8,8 +8,8 @@ module Increase
|
|
|
8
8
|
?debtor_account_number: String,
|
|
9
9
|
?debtor_name: String,
|
|
10
10
|
?debtor_routing_number: String,
|
|
11
|
-
?remittance_information: String,
|
|
12
11
|
?request_for_payment_id: String,
|
|
12
|
+
?unstructured_remittance_information: String,
|
|
13
13
|
?request_options: Increase::request_opts
|
|
14
14
|
) -> Increase::InboundRealTimePaymentsTransfer
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.264.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|