increase 1.122.0 → 1.123.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 +9 -0
- data/README.md +1 -1
- data/lib/increase/models/card_dispute.rb +6 -24
- data/lib/increase/models/pending_transaction.rb +5 -3
- data/lib/increase/models/wire_transfer.rb +149 -73
- data/lib/increase/models/wire_transfer_create_params.rb +155 -73
- data/lib/increase/resources/wire_transfers.rb +5 -17
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_dispute.rbi +8 -90
- data/rbi/increase/models/pending_transaction.rbi +3 -3
- data/rbi/increase/models/wire_transfer.rbi +342 -72
- data/rbi/increase/models/wire_transfer_create_params.rbi +360 -107
- data/rbi/increase/resources/wire_transfers.rbi +11 -31
- data/sig/increase/models/card_dispute.rbs +8 -24
- data/sig/increase/models/pending_transaction.rbs +4 -4
- data/sig/increase/models/wire_transfer.rbs +128 -45
- data/sig/increase/models/wire_transfer_create_params.rbs +156 -60
- data/sig/increase/resources/wire_transfers.rbs +3 -9
- metadata +2 -2
|
@@ -689,7 +689,7 @@ module Increase
|
|
|
689
689
|
cardholder_no_longer_disputes: Increase::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes?,
|
|
690
690
|
credit_or_reversal_processed: Increase::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed?,
|
|
691
691
|
invalid_dispute: Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute?,
|
|
692
|
-
non_fiat_currency_or_non_fungible_token_as_described:
|
|
692
|
+
non_fiat_currency_or_non_fungible_token_as_described: top?,
|
|
693
693
|
non_fiat_currency_or_non_fungible_token_received: Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived?,
|
|
694
694
|
proof_of_cash_disbursement: Increase::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement?,
|
|
695
695
|
reason: Increase::Models::CardDispute::Visa::NetworkEvent::Represented::reason,
|
|
@@ -703,7 +703,7 @@ module Increase
|
|
|
703
703
|
|
|
704
704
|
attr_accessor invalid_dispute: Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute?
|
|
705
705
|
|
|
706
|
-
attr_accessor non_fiat_currency_or_non_fungible_token_as_described:
|
|
706
|
+
attr_accessor non_fiat_currency_or_non_fungible_token_as_described: top?
|
|
707
707
|
|
|
708
708
|
attr_accessor non_fiat_currency_or_non_fungible_token_received: Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived?
|
|
709
709
|
|
|
@@ -717,7 +717,7 @@ module Increase
|
|
|
717
717
|
cardholder_no_longer_disputes: Increase::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes?,
|
|
718
718
|
credit_or_reversal_processed: Increase::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed?,
|
|
719
719
|
invalid_dispute: Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute?,
|
|
720
|
-
non_fiat_currency_or_non_fungible_token_as_described:
|
|
720
|
+
non_fiat_currency_or_non_fungible_token_as_described: top?,
|
|
721
721
|
non_fiat_currency_or_non_fungible_token_received: Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived?,
|
|
722
722
|
proof_of_cash_disbursement: Increase::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement?,
|
|
723
723
|
reason: Increase::Models::CardDispute::Visa::NetworkEvent::Represented::reason,
|
|
@@ -728,7 +728,7 @@ module Increase
|
|
|
728
728
|
cardholder_no_longer_disputes: Increase::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes?,
|
|
729
729
|
credit_or_reversal_processed: Increase::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed?,
|
|
730
730
|
invalid_dispute: Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute?,
|
|
731
|
-
non_fiat_currency_or_non_fungible_token_as_described:
|
|
731
|
+
non_fiat_currency_or_non_fungible_token_as_described: top?,
|
|
732
732
|
non_fiat_currency_or_non_fungible_token_received: Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived?,
|
|
733
733
|
proof_of_cash_disbursement: Increase::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement?,
|
|
734
734
|
reason: Increase::Models::CardDispute::Visa::NetworkEvent::Represented::reason,
|
|
@@ -943,14 +943,6 @@ module Increase
|
|
|
943
943
|
end
|
|
944
944
|
end
|
|
945
945
|
|
|
946
|
-
type non_fiat_currency_or_non_fungible_token_as_described = { }
|
|
947
|
-
|
|
948
|
-
class NonFiatCurrencyOrNonFungibleTokenAsDescribed < Increase::Internal::Type::BaseModel
|
|
949
|
-
def initialize: -> void
|
|
950
|
-
|
|
951
|
-
def to_hash: -> { }
|
|
952
|
-
end
|
|
953
|
-
|
|
954
946
|
type non_fiat_currency_or_non_fungible_token_received =
|
|
955
947
|
{
|
|
956
948
|
blockchain_transaction_hash: String,
|
|
@@ -1168,7 +1160,7 @@ module Increase
|
|
|
1168
1160
|
consumer_merchandise_misrepresentation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation?,
|
|
1169
1161
|
consumer_merchandise_not_as_described: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotAsDescribed?,
|
|
1170
1162
|
consumer_merchandise_not_received: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived?,
|
|
1171
|
-
consumer_non_receipt_of_cash:
|
|
1163
|
+
consumer_non_receipt_of_cash: top?,
|
|
1172
1164
|
consumer_original_credit_transaction_not_accepted: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted?,
|
|
1173
1165
|
consumer_quality_merchandise: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise?,
|
|
1174
1166
|
consumer_quality_services: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityServices?,
|
|
@@ -1202,7 +1194,7 @@ module Increase
|
|
|
1202
1194
|
|
|
1203
1195
|
attr_accessor consumer_merchandise_not_received: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived?
|
|
1204
1196
|
|
|
1205
|
-
attr_accessor consumer_non_receipt_of_cash:
|
|
1197
|
+
attr_accessor consumer_non_receipt_of_cash: top?
|
|
1206
1198
|
|
|
1207
1199
|
attr_accessor consumer_original_credit_transaction_not_accepted: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted?
|
|
1208
1200
|
|
|
@@ -1232,7 +1224,7 @@ module Increase
|
|
|
1232
1224
|
consumer_merchandise_misrepresentation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation?,
|
|
1233
1225
|
consumer_merchandise_not_as_described: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotAsDescribed?,
|
|
1234
1226
|
consumer_merchandise_not_received: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived?,
|
|
1235
|
-
consumer_non_receipt_of_cash:
|
|
1227
|
+
consumer_non_receipt_of_cash: top?,
|
|
1236
1228
|
consumer_original_credit_transaction_not_accepted: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted?,
|
|
1237
1229
|
consumer_quality_merchandise: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise?,
|
|
1238
1230
|
consumer_quality_services: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityServices?,
|
|
@@ -1255,7 +1247,7 @@ module Increase
|
|
|
1255
1247
|
consumer_merchandise_misrepresentation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation?,
|
|
1256
1248
|
consumer_merchandise_not_as_described: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotAsDescribed?,
|
|
1257
1249
|
consumer_merchandise_not_received: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived?,
|
|
1258
|
-
consumer_non_receipt_of_cash:
|
|
1250
|
+
consumer_non_receipt_of_cash: top?,
|
|
1259
1251
|
consumer_original_credit_transaction_not_accepted: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted?,
|
|
1260
1252
|
consumer_quality_merchandise: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise?,
|
|
1261
1253
|
consumer_quality_services: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityServices?,
|
|
@@ -2807,14 +2799,6 @@ module Increase
|
|
|
2807
2799
|
end
|
|
2808
2800
|
end
|
|
2809
2801
|
|
|
2810
|
-
type consumer_non_receipt_of_cash = { }
|
|
2811
|
-
|
|
2812
|
-
class ConsumerNonReceiptOfCash < Increase::Internal::Type::BaseModel
|
|
2813
|
-
def initialize: -> void
|
|
2814
|
-
|
|
2815
|
-
def to_hash: -> { }
|
|
2816
|
-
end
|
|
2817
|
-
|
|
2818
2802
|
type consumer_original_credit_transaction_not_accepted =
|
|
2819
2803
|
{
|
|
2820
2804
|
explanation: String,
|
|
@@ -148,7 +148,7 @@ module Increase
|
|
|
148
148
|
other: top?,
|
|
149
149
|
real_time_payments_transfer_instruction: Increase::PendingTransaction::Source::RealTimePaymentsTransferInstruction?,
|
|
150
150
|
swift_transfer_instruction: Increase::PendingTransaction::Source::SwiftTransferInstruction?,
|
|
151
|
-
user_initiated_hold: top?,
|
|
151
|
+
user_initiated_hold: ::Hash[Symbol, top]?,
|
|
152
152
|
wire_transfer_instruction: Increase::PendingTransaction::Source::WireTransferInstruction?
|
|
153
153
|
}
|
|
154
154
|
|
|
@@ -179,7 +179,7 @@ module Increase
|
|
|
179
179
|
|
|
180
180
|
attr_accessor swift_transfer_instruction: Increase::PendingTransaction::Source::SwiftTransferInstruction?
|
|
181
181
|
|
|
182
|
-
attr_accessor user_initiated_hold: top?
|
|
182
|
+
attr_accessor user_initiated_hold: ::Hash[Symbol, top]?
|
|
183
183
|
|
|
184
184
|
attr_accessor wire_transfer_instruction: Increase::PendingTransaction::Source::WireTransferInstruction?
|
|
185
185
|
|
|
@@ -197,7 +197,7 @@ module Increase
|
|
|
197
197
|
other: top?,
|
|
198
198
|
real_time_payments_transfer_instruction: Increase::PendingTransaction::Source::RealTimePaymentsTransferInstruction?,
|
|
199
199
|
swift_transfer_instruction: Increase::PendingTransaction::Source::SwiftTransferInstruction?,
|
|
200
|
-
user_initiated_hold: top?,
|
|
200
|
+
user_initiated_hold: ::Hash[Symbol, top]?,
|
|
201
201
|
wire_transfer_instruction: Increase::PendingTransaction::Source::WireTransferInstruction?
|
|
202
202
|
) -> void
|
|
203
203
|
|
|
@@ -215,7 +215,7 @@ module Increase
|
|
|
215
215
|
other: top?,
|
|
216
216
|
real_time_payments_transfer_instruction: Increase::PendingTransaction::Source::RealTimePaymentsTransferInstruction?,
|
|
217
217
|
swift_transfer_instruction: Increase::PendingTransaction::Source::SwiftTransferInstruction?,
|
|
218
|
-
user_initiated_hold: top?,
|
|
218
|
+
user_initiated_hold: ::Hash[Symbol, top]?,
|
|
219
219
|
wire_transfer_instruction: Increase::PendingTransaction::Source::WireTransferInstruction?
|
|
220
220
|
}
|
|
221
221
|
|
|
@@ -7,23 +7,16 @@ module Increase
|
|
|
7
7
|
account_number: String,
|
|
8
8
|
amount: Integer,
|
|
9
9
|
approval: Increase::WireTransfer::Approval?,
|
|
10
|
-
:beneficiary_address_line1 => String?,
|
|
11
|
-
:beneficiary_address_line2 => String?,
|
|
12
|
-
:beneficiary_address_line3 => String?,
|
|
13
|
-
beneficiary_name: String?,
|
|
14
10
|
cancellation: Increase::WireTransfer::Cancellation?,
|
|
15
11
|
created_at: Time,
|
|
16
12
|
created_by: Increase::WireTransfer::CreatedBy?,
|
|
13
|
+
creditor: Increase::WireTransfer::Creditor?,
|
|
17
14
|
currency: Increase::Models::WireTransfer::currency,
|
|
15
|
+
debtor: Increase::WireTransfer::Debtor?,
|
|
18
16
|
external_account_id: String?,
|
|
19
17
|
idempotency_key: String?,
|
|
20
18
|
inbound_wire_drawdown_request_id: String?,
|
|
21
|
-
message_to_recipient: String,
|
|
22
19
|
network: Increase::Models::WireTransfer::network,
|
|
23
|
-
:originator_address_line1 => String?,
|
|
24
|
-
:originator_address_line2 => String?,
|
|
25
|
-
:originator_address_line3 => String?,
|
|
26
|
-
originator_name: String?,
|
|
27
20
|
pending_transaction_id: String?,
|
|
28
21
|
remittance: Increase::WireTransfer::Remittance?,
|
|
29
22
|
reversal: Increase::WireTransfer::Reversal?,
|
|
@@ -46,40 +39,26 @@ module Increase
|
|
|
46
39
|
|
|
47
40
|
attr_accessor approval: Increase::WireTransfer::Approval?
|
|
48
41
|
|
|
49
|
-
attr_accessor beneficiary_address_line1: String?
|
|
50
|
-
|
|
51
|
-
attr_accessor beneficiary_address_line2: String?
|
|
52
|
-
|
|
53
|
-
attr_accessor beneficiary_address_line3: String?
|
|
54
|
-
|
|
55
|
-
attr_accessor beneficiary_name: String?
|
|
56
|
-
|
|
57
42
|
attr_accessor cancellation: Increase::WireTransfer::Cancellation?
|
|
58
43
|
|
|
59
44
|
attr_accessor created_at: Time
|
|
60
45
|
|
|
61
46
|
attr_accessor created_by: Increase::WireTransfer::CreatedBy?
|
|
62
47
|
|
|
48
|
+
attr_accessor creditor: Increase::WireTransfer::Creditor?
|
|
49
|
+
|
|
63
50
|
attr_accessor currency: Increase::Models::WireTransfer::currency
|
|
64
51
|
|
|
52
|
+
attr_accessor debtor: Increase::WireTransfer::Debtor?
|
|
53
|
+
|
|
65
54
|
attr_accessor external_account_id: String?
|
|
66
55
|
|
|
67
56
|
attr_accessor idempotency_key: String?
|
|
68
57
|
|
|
69
58
|
attr_accessor inbound_wire_drawdown_request_id: String?
|
|
70
59
|
|
|
71
|
-
attr_accessor message_to_recipient: String
|
|
72
|
-
|
|
73
60
|
attr_accessor network: Increase::Models::WireTransfer::network
|
|
74
61
|
|
|
75
|
-
attr_accessor originator_address_line1: String?
|
|
76
|
-
|
|
77
|
-
attr_accessor originator_address_line2: String?
|
|
78
|
-
|
|
79
|
-
attr_accessor originator_address_line3: String?
|
|
80
|
-
|
|
81
|
-
attr_accessor originator_name: String?
|
|
82
|
-
|
|
83
62
|
attr_accessor pending_transaction_id: String?
|
|
84
63
|
|
|
85
64
|
attr_accessor remittance: Increase::WireTransfer::Remittance?
|
|
@@ -104,23 +83,16 @@ module Increase
|
|
|
104
83
|
account_number: String,
|
|
105
84
|
amount: Integer,
|
|
106
85
|
approval: Increase::WireTransfer::Approval?,
|
|
107
|
-
beneficiary_address_line1: String?,
|
|
108
|
-
beneficiary_address_line2: String?,
|
|
109
|
-
beneficiary_address_line3: String?,
|
|
110
|
-
beneficiary_name: String?,
|
|
111
86
|
cancellation: Increase::WireTransfer::Cancellation?,
|
|
112
87
|
created_at: Time,
|
|
113
88
|
created_by: Increase::WireTransfer::CreatedBy?,
|
|
89
|
+
creditor: Increase::WireTransfer::Creditor?,
|
|
114
90
|
currency: Increase::Models::WireTransfer::currency,
|
|
91
|
+
debtor: Increase::WireTransfer::Debtor?,
|
|
115
92
|
external_account_id: String?,
|
|
116
93
|
idempotency_key: String?,
|
|
117
94
|
inbound_wire_drawdown_request_id: String?,
|
|
118
|
-
message_to_recipient: String,
|
|
119
95
|
network: Increase::Models::WireTransfer::network,
|
|
120
|
-
originator_address_line1: String?,
|
|
121
|
-
originator_address_line2: String?,
|
|
122
|
-
originator_address_line3: String?,
|
|
123
|
-
originator_name: String?,
|
|
124
96
|
pending_transaction_id: String?,
|
|
125
97
|
remittance: Increase::WireTransfer::Remittance?,
|
|
126
98
|
reversal: Increase::WireTransfer::Reversal?,
|
|
@@ -138,23 +110,16 @@ module Increase
|
|
|
138
110
|
account_number: String,
|
|
139
111
|
amount: Integer,
|
|
140
112
|
approval: Increase::WireTransfer::Approval?,
|
|
141
|
-
:beneficiary_address_line1 => String?,
|
|
142
|
-
:beneficiary_address_line2 => String?,
|
|
143
|
-
:beneficiary_address_line3 => String?,
|
|
144
|
-
beneficiary_name: String?,
|
|
145
113
|
cancellation: Increase::WireTransfer::Cancellation?,
|
|
146
114
|
created_at: Time,
|
|
147
115
|
created_by: Increase::WireTransfer::CreatedBy?,
|
|
116
|
+
creditor: Increase::WireTransfer::Creditor?,
|
|
148
117
|
currency: Increase::Models::WireTransfer::currency,
|
|
118
|
+
debtor: Increase::WireTransfer::Debtor?,
|
|
149
119
|
external_account_id: String?,
|
|
150
120
|
idempotency_key: String?,
|
|
151
121
|
inbound_wire_drawdown_request_id: String?,
|
|
152
|
-
message_to_recipient: String,
|
|
153
122
|
network: Increase::Models::WireTransfer::network,
|
|
154
|
-
:originator_address_line1 => String?,
|
|
155
|
-
:originator_address_line2 => String?,
|
|
156
|
-
:originator_address_line3 => String?,
|
|
157
|
-
originator_name: String?,
|
|
158
123
|
pending_transaction_id: String?,
|
|
159
124
|
remittance: Increase::WireTransfer::Remittance?,
|
|
160
125
|
reversal: Increase::WireTransfer::Reversal?,
|
|
@@ -269,6 +234,65 @@ module Increase
|
|
|
269
234
|
end
|
|
270
235
|
end
|
|
271
236
|
|
|
237
|
+
type creditor =
|
|
238
|
+
{ address: Increase::WireTransfer::Creditor::Address?, name: String? }
|
|
239
|
+
|
|
240
|
+
class Creditor < Increase::Internal::Type::BaseModel
|
|
241
|
+
attr_accessor address: Increase::WireTransfer::Creditor::Address?
|
|
242
|
+
|
|
243
|
+
attr_accessor name: String?
|
|
244
|
+
|
|
245
|
+
def initialize: (
|
|
246
|
+
address: Increase::WireTransfer::Creditor::Address?,
|
|
247
|
+
name: String?
|
|
248
|
+
) -> void
|
|
249
|
+
|
|
250
|
+
def to_hash: -> {
|
|
251
|
+
address: Increase::WireTransfer::Creditor::Address?,
|
|
252
|
+
name: String?
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
type address =
|
|
256
|
+
{
|
|
257
|
+
unstructured: Increase::WireTransfer::Creditor::Address::Unstructured?
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
class Address < Increase::Internal::Type::BaseModel
|
|
261
|
+
attr_accessor unstructured: Increase::WireTransfer::Creditor::Address::Unstructured?
|
|
262
|
+
|
|
263
|
+
def initialize: (
|
|
264
|
+
unstructured: Increase::WireTransfer::Creditor::Address::Unstructured?
|
|
265
|
+
) -> void
|
|
266
|
+
|
|
267
|
+
def to_hash: -> {
|
|
268
|
+
unstructured: Increase::WireTransfer::Creditor::Address::Unstructured?
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
type unstructured =
|
|
272
|
+
{ :line1 => String?, :line2 => String?, :line3 => String? }
|
|
273
|
+
|
|
274
|
+
class Unstructured < Increase::Internal::Type::BaseModel
|
|
275
|
+
attr_accessor line1: String?
|
|
276
|
+
|
|
277
|
+
attr_accessor line2: String?
|
|
278
|
+
|
|
279
|
+
attr_accessor line3: String?
|
|
280
|
+
|
|
281
|
+
def initialize: (
|
|
282
|
+
line1: String?,
|
|
283
|
+
line2: String?,
|
|
284
|
+
line3: String?
|
|
285
|
+
) -> void
|
|
286
|
+
|
|
287
|
+
def to_hash: -> {
|
|
288
|
+
:line1 => String?,
|
|
289
|
+
:line2 => String?,
|
|
290
|
+
:line3 => String?
|
|
291
|
+
}
|
|
292
|
+
end
|
|
293
|
+
end
|
|
294
|
+
end
|
|
295
|
+
|
|
272
296
|
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
|
273
297
|
|
|
274
298
|
module Currency
|
|
@@ -295,6 +319,65 @@ module Increase
|
|
|
295
319
|
def self?.values: -> ::Array[Increase::Models::WireTransfer::currency]
|
|
296
320
|
end
|
|
297
321
|
|
|
322
|
+
type debtor =
|
|
323
|
+
{ address: Increase::WireTransfer::Debtor::Address?, name: String? }
|
|
324
|
+
|
|
325
|
+
class Debtor < Increase::Internal::Type::BaseModel
|
|
326
|
+
attr_accessor address: Increase::WireTransfer::Debtor::Address?
|
|
327
|
+
|
|
328
|
+
attr_accessor name: String?
|
|
329
|
+
|
|
330
|
+
def initialize: (
|
|
331
|
+
address: Increase::WireTransfer::Debtor::Address?,
|
|
332
|
+
name: String?
|
|
333
|
+
) -> void
|
|
334
|
+
|
|
335
|
+
def to_hash: -> {
|
|
336
|
+
address: Increase::WireTransfer::Debtor::Address?,
|
|
337
|
+
name: String?
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
type address =
|
|
341
|
+
{
|
|
342
|
+
unstructured: Increase::WireTransfer::Debtor::Address::Unstructured?
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
class Address < Increase::Internal::Type::BaseModel
|
|
346
|
+
attr_accessor unstructured: Increase::WireTransfer::Debtor::Address::Unstructured?
|
|
347
|
+
|
|
348
|
+
def initialize: (
|
|
349
|
+
unstructured: Increase::WireTransfer::Debtor::Address::Unstructured?
|
|
350
|
+
) -> void
|
|
351
|
+
|
|
352
|
+
def to_hash: -> {
|
|
353
|
+
unstructured: Increase::WireTransfer::Debtor::Address::Unstructured?
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
type unstructured =
|
|
357
|
+
{ :line1 => String?, :line2 => String?, :line3 => String? }
|
|
358
|
+
|
|
359
|
+
class Unstructured < Increase::Internal::Type::BaseModel
|
|
360
|
+
attr_accessor line1: String?
|
|
361
|
+
|
|
362
|
+
attr_accessor line2: String?
|
|
363
|
+
|
|
364
|
+
attr_accessor line3: String?
|
|
365
|
+
|
|
366
|
+
def initialize: (
|
|
367
|
+
line1: String?,
|
|
368
|
+
line2: String?,
|
|
369
|
+
line3: String?
|
|
370
|
+
) -> void
|
|
371
|
+
|
|
372
|
+
def to_hash: -> {
|
|
373
|
+
:line1 => String?,
|
|
374
|
+
:line2 => String?,
|
|
375
|
+
:line3 => String?
|
|
376
|
+
}
|
|
377
|
+
end
|
|
378
|
+
end
|
|
379
|
+
end
|
|
380
|
+
|
|
298
381
|
type network = :wire
|
|
299
382
|
|
|
300
383
|
module Network
|
|
@@ -4,18 +4,12 @@ module Increase
|
|
|
4
4
|
{
|
|
5
5
|
account_id: String,
|
|
6
6
|
amount: Integer,
|
|
7
|
-
|
|
7
|
+
creditor: Increase::WireTransferCreateParams::Creditor,
|
|
8
|
+
remittance: Increase::WireTransferCreateParams::Remittance,
|
|
8
9
|
account_number: String,
|
|
9
|
-
:
|
|
10
|
-
:beneficiary_address_line2 => String,
|
|
11
|
-
:beneficiary_address_line3 => String,
|
|
10
|
+
debtor: Increase::WireTransferCreateParams::Debtor,
|
|
12
11
|
external_account_id: String,
|
|
13
12
|
inbound_wire_drawdown_request_id: String,
|
|
14
|
-
:originator_address_line1 => String,
|
|
15
|
-
:originator_address_line2 => String,
|
|
16
|
-
:originator_address_line3 => String,
|
|
17
|
-
originator_name: String,
|
|
18
|
-
remittance: Increase::WireTransferCreateParams::Remittance,
|
|
19
13
|
require_approval: bool,
|
|
20
14
|
routing_number: String,
|
|
21
15
|
source_account_number_id: String
|
|
@@ -30,23 +24,19 @@ module Increase
|
|
|
30
24
|
|
|
31
25
|
attr_accessor amount: Integer
|
|
32
26
|
|
|
33
|
-
attr_accessor
|
|
27
|
+
attr_accessor creditor: Increase::WireTransferCreateParams::Creditor
|
|
28
|
+
|
|
29
|
+
attr_accessor remittance: Increase::WireTransferCreateParams::Remittance
|
|
34
30
|
|
|
35
31
|
attr_reader account_number: String?
|
|
36
32
|
|
|
37
33
|
def account_number=: (String) -> String
|
|
38
34
|
|
|
39
|
-
attr_reader
|
|
40
|
-
|
|
41
|
-
def beneficiary_address_line1=: (String) -> String
|
|
42
|
-
|
|
43
|
-
attr_reader beneficiary_address_line2: String?
|
|
44
|
-
|
|
45
|
-
def beneficiary_address_line2=: (String) -> String
|
|
35
|
+
attr_reader debtor: Increase::WireTransferCreateParams::Debtor?
|
|
46
36
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
37
|
+
def debtor=: (
|
|
38
|
+
Increase::WireTransferCreateParams::Debtor
|
|
39
|
+
) -> Increase::WireTransferCreateParams::Debtor
|
|
50
40
|
|
|
51
41
|
attr_reader external_account_id: String?
|
|
52
42
|
|
|
@@ -56,28 +46,6 @@ module Increase
|
|
|
56
46
|
|
|
57
47
|
def inbound_wire_drawdown_request_id=: (String) -> String
|
|
58
48
|
|
|
59
|
-
attr_reader originator_address_line1: String?
|
|
60
|
-
|
|
61
|
-
def originator_address_line1=: (String) -> String
|
|
62
|
-
|
|
63
|
-
attr_reader originator_address_line2: String?
|
|
64
|
-
|
|
65
|
-
def originator_address_line2=: (String) -> String
|
|
66
|
-
|
|
67
|
-
attr_reader originator_address_line3: String?
|
|
68
|
-
|
|
69
|
-
def originator_address_line3=: (String) -> String
|
|
70
|
-
|
|
71
|
-
attr_reader originator_name: String?
|
|
72
|
-
|
|
73
|
-
def originator_name=: (String) -> String
|
|
74
|
-
|
|
75
|
-
attr_reader remittance: Increase::WireTransferCreateParams::Remittance?
|
|
76
|
-
|
|
77
|
-
def remittance=: (
|
|
78
|
-
Increase::WireTransferCreateParams::Remittance
|
|
79
|
-
) -> Increase::WireTransferCreateParams::Remittance
|
|
80
|
-
|
|
81
49
|
attr_reader require_approval: bool?
|
|
82
50
|
|
|
83
51
|
def require_approval=: (bool) -> bool
|
|
@@ -93,18 +61,12 @@ module Increase
|
|
|
93
61
|
def initialize: (
|
|
94
62
|
account_id: String,
|
|
95
63
|
amount: Integer,
|
|
96
|
-
|
|
64
|
+
creditor: Increase::WireTransferCreateParams::Creditor,
|
|
65
|
+
remittance: Increase::WireTransferCreateParams::Remittance,
|
|
97
66
|
?account_number: String,
|
|
98
|
-
?
|
|
99
|
-
?beneficiary_address_line2: String,
|
|
100
|
-
?beneficiary_address_line3: String,
|
|
67
|
+
?debtor: Increase::WireTransferCreateParams::Debtor,
|
|
101
68
|
?external_account_id: String,
|
|
102
69
|
?inbound_wire_drawdown_request_id: String,
|
|
103
|
-
?originator_address_line1: String,
|
|
104
|
-
?originator_address_line2: String,
|
|
105
|
-
?originator_address_line3: String,
|
|
106
|
-
?originator_name: String,
|
|
107
|
-
?remittance: Increase::WireTransferCreateParams::Remittance,
|
|
108
70
|
?require_approval: bool,
|
|
109
71
|
?routing_number: String,
|
|
110
72
|
?source_account_number_id: String,
|
|
@@ -114,24 +76,88 @@ module Increase
|
|
|
114
76
|
def to_hash: -> {
|
|
115
77
|
account_id: String,
|
|
116
78
|
amount: Integer,
|
|
117
|
-
|
|
79
|
+
creditor: Increase::WireTransferCreateParams::Creditor,
|
|
80
|
+
remittance: Increase::WireTransferCreateParams::Remittance,
|
|
118
81
|
account_number: String,
|
|
119
|
-
:
|
|
120
|
-
:beneficiary_address_line2 => String,
|
|
121
|
-
:beneficiary_address_line3 => String,
|
|
82
|
+
debtor: Increase::WireTransferCreateParams::Debtor,
|
|
122
83
|
external_account_id: String,
|
|
123
84
|
inbound_wire_drawdown_request_id: String,
|
|
124
|
-
:originator_address_line1 => String,
|
|
125
|
-
:originator_address_line2 => String,
|
|
126
|
-
:originator_address_line3 => String,
|
|
127
|
-
originator_name: String,
|
|
128
|
-
remittance: Increase::WireTransferCreateParams::Remittance,
|
|
129
85
|
require_approval: bool,
|
|
130
86
|
routing_number: String,
|
|
131
87
|
source_account_number_id: String,
|
|
132
88
|
request_options: Increase::RequestOptions
|
|
133
89
|
}
|
|
134
90
|
|
|
91
|
+
type creditor =
|
|
92
|
+
{
|
|
93
|
+
name: String,
|
|
94
|
+
address: Increase::WireTransferCreateParams::Creditor::Address
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
class Creditor < Increase::Internal::Type::BaseModel
|
|
98
|
+
attr_accessor name: String
|
|
99
|
+
|
|
100
|
+
attr_reader address: Increase::WireTransferCreateParams::Creditor::Address?
|
|
101
|
+
|
|
102
|
+
def address=: (
|
|
103
|
+
Increase::WireTransferCreateParams::Creditor::Address
|
|
104
|
+
) -> Increase::WireTransferCreateParams::Creditor::Address
|
|
105
|
+
|
|
106
|
+
def initialize: (
|
|
107
|
+
name: String,
|
|
108
|
+
?address: Increase::WireTransferCreateParams::Creditor::Address
|
|
109
|
+
) -> void
|
|
110
|
+
|
|
111
|
+
def to_hash: -> {
|
|
112
|
+
name: String,
|
|
113
|
+
address: Increase::WireTransferCreateParams::Creditor::Address
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
type address =
|
|
117
|
+
{
|
|
118
|
+
unstructured: Increase::WireTransferCreateParams::Creditor::Address::Unstructured
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
class Address < Increase::Internal::Type::BaseModel
|
|
122
|
+
attr_accessor unstructured: Increase::WireTransferCreateParams::Creditor::Address::Unstructured
|
|
123
|
+
|
|
124
|
+
def initialize: (
|
|
125
|
+
unstructured: Increase::WireTransferCreateParams::Creditor::Address::Unstructured
|
|
126
|
+
) -> void
|
|
127
|
+
|
|
128
|
+
def to_hash: -> {
|
|
129
|
+
unstructured: Increase::WireTransferCreateParams::Creditor::Address::Unstructured
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
type unstructured =
|
|
133
|
+
{ :line1 => String, :line2 => String, :line3 => String }
|
|
134
|
+
|
|
135
|
+
class Unstructured < Increase::Internal::Type::BaseModel
|
|
136
|
+
attr_accessor line1: String
|
|
137
|
+
|
|
138
|
+
attr_reader line2: String?
|
|
139
|
+
|
|
140
|
+
def line2=: (String) -> String
|
|
141
|
+
|
|
142
|
+
attr_reader line3: String?
|
|
143
|
+
|
|
144
|
+
def line3=: (String) -> String
|
|
145
|
+
|
|
146
|
+
def initialize: (
|
|
147
|
+
line1: String,
|
|
148
|
+
?line2: String,
|
|
149
|
+
?line3: String
|
|
150
|
+
) -> void
|
|
151
|
+
|
|
152
|
+
def to_hash: -> {
|
|
153
|
+
:line1 => String,
|
|
154
|
+
:line2 => String,
|
|
155
|
+
:line3 => String
|
|
156
|
+
}
|
|
157
|
+
end
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
135
161
|
type remittance =
|
|
136
162
|
{
|
|
137
163
|
category: Increase::Models::WireTransferCreateParams::Remittance::category,
|
|
@@ -213,6 +239,76 @@ module Increase
|
|
|
213
239
|
def to_hash: -> { message: String }
|
|
214
240
|
end
|
|
215
241
|
end
|
|
242
|
+
|
|
243
|
+
type debtor =
|
|
244
|
+
{
|
|
245
|
+
name: String,
|
|
246
|
+
address: Increase::WireTransferCreateParams::Debtor::Address
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
class Debtor < Increase::Internal::Type::BaseModel
|
|
250
|
+
attr_accessor name: String
|
|
251
|
+
|
|
252
|
+
attr_reader address: Increase::WireTransferCreateParams::Debtor::Address?
|
|
253
|
+
|
|
254
|
+
def address=: (
|
|
255
|
+
Increase::WireTransferCreateParams::Debtor::Address
|
|
256
|
+
) -> Increase::WireTransferCreateParams::Debtor::Address
|
|
257
|
+
|
|
258
|
+
def initialize: (
|
|
259
|
+
name: String,
|
|
260
|
+
?address: Increase::WireTransferCreateParams::Debtor::Address
|
|
261
|
+
) -> void
|
|
262
|
+
|
|
263
|
+
def to_hash: -> {
|
|
264
|
+
name: String,
|
|
265
|
+
address: Increase::WireTransferCreateParams::Debtor::Address
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
type address =
|
|
269
|
+
{
|
|
270
|
+
unstructured: Increase::WireTransferCreateParams::Debtor::Address::Unstructured
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
class Address < Increase::Internal::Type::BaseModel
|
|
274
|
+
attr_accessor unstructured: Increase::WireTransferCreateParams::Debtor::Address::Unstructured
|
|
275
|
+
|
|
276
|
+
def initialize: (
|
|
277
|
+
unstructured: Increase::WireTransferCreateParams::Debtor::Address::Unstructured
|
|
278
|
+
) -> void
|
|
279
|
+
|
|
280
|
+
def to_hash: -> {
|
|
281
|
+
unstructured: Increase::WireTransferCreateParams::Debtor::Address::Unstructured
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
type unstructured =
|
|
285
|
+
{ :line1 => String, :line2 => String, :line3 => String }
|
|
286
|
+
|
|
287
|
+
class Unstructured < Increase::Internal::Type::BaseModel
|
|
288
|
+
attr_accessor line1: String
|
|
289
|
+
|
|
290
|
+
attr_reader line2: String?
|
|
291
|
+
|
|
292
|
+
def line2=: (String) -> String
|
|
293
|
+
|
|
294
|
+
attr_reader line3: String?
|
|
295
|
+
|
|
296
|
+
def line3=: (String) -> String
|
|
297
|
+
|
|
298
|
+
def initialize: (
|
|
299
|
+
line1: String,
|
|
300
|
+
?line2: String,
|
|
301
|
+
?line3: String
|
|
302
|
+
) -> void
|
|
303
|
+
|
|
304
|
+
def to_hash: -> {
|
|
305
|
+
:line1 => String,
|
|
306
|
+
:line2 => String,
|
|
307
|
+
:line3 => String
|
|
308
|
+
}
|
|
309
|
+
end
|
|
310
|
+
end
|
|
311
|
+
end
|
|
216
312
|
end
|
|
217
313
|
end
|
|
218
314
|
end
|
|
@@ -4,18 +4,12 @@ module Increase
|
|
|
4
4
|
def create: (
|
|
5
5
|
account_id: String,
|
|
6
6
|
amount: Integer,
|
|
7
|
-
|
|
7
|
+
creditor: Increase::WireTransferCreateParams::Creditor,
|
|
8
|
+
remittance: Increase::WireTransferCreateParams::Remittance,
|
|
8
9
|
?account_number: String,
|
|
9
|
-
?
|
|
10
|
-
?beneficiary_address_line2: String,
|
|
11
|
-
?beneficiary_address_line3: String,
|
|
10
|
+
?debtor: Increase::WireTransferCreateParams::Debtor,
|
|
12
11
|
?external_account_id: String,
|
|
13
12
|
?inbound_wire_drawdown_request_id: String,
|
|
14
|
-
?originator_address_line1: String,
|
|
15
|
-
?originator_address_line2: String,
|
|
16
|
-
?originator_address_line3: String,
|
|
17
|
-
?originator_name: String,
|
|
18
|
-
?remittance: Increase::WireTransferCreateParams::Remittance,
|
|
19
13
|
?require_approval: bool,
|
|
20
14
|
?routing_number: String,
|
|
21
15
|
?source_account_number_id: String,
|