increase 1.48.0 → 1.50.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/inbound_wire_drawdown_request.rb +82 -97
- data/lib/increase/models/simulations/inbound_wire_drawdown_request_create_params.rb +79 -84
- data/lib/increase/models/transaction.rb +9 -9
- data/lib/increase/models/wire_transfer.rb +9 -9
- data/lib/increase/resources/simulations/inbound_wire_drawdown_requests.rb +18 -20
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/inbound_wire_drawdown_request.rbi +112 -126
- data/rbi/increase/models/simulations/inbound_wire_drawdown_request_create_params.rbi +144 -140
- data/rbi/increase/models/transaction.rbi +11 -9
- data/rbi/increase/models/wire_transfer.rbi +11 -9
- data/rbi/increase/resources/simulations/inbound_wire_drawdown_requests.rbi +55 -55
- data/sig/increase/models/inbound_wire_drawdown_request.rbs +66 -76
- data/sig/increase/models/simulations/inbound_wire_drawdown_request_create_params.rbs +80 -81
- data/sig/increase/models/transaction.rbs +12 -12
- data/sig/increase/models/wire_transfer.rbs +12 -12
- data/sig/increase/resources/simulations/inbound_wire_drawdown_requests.rbs +16 -17
- metadata +2 -2
@@ -19,196 +19,201 @@ module Increase
|
|
19
19
|
sig { returns(Integer) }
|
20
20
|
attr_accessor :amount
|
21
21
|
|
22
|
-
# The
|
22
|
+
# The creditor's account number.
|
23
23
|
sig { returns(String) }
|
24
|
-
attr_accessor :
|
24
|
+
attr_accessor :creditor_account_number
|
25
25
|
|
26
|
-
# The
|
26
|
+
# The creditor's routing number.
|
27
27
|
sig { returns(String) }
|
28
|
-
attr_accessor :
|
28
|
+
attr_accessor :creditor_routing_number
|
29
29
|
|
30
30
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
|
31
31
|
# requested. Will always be "USD".
|
32
32
|
sig { returns(String) }
|
33
33
|
attr_accessor :currency
|
34
34
|
|
35
|
-
# A message from the drawdown request's originator.
|
36
|
-
sig { returns(String) }
|
37
|
-
attr_accessor :message_to_recipient
|
38
|
-
|
39
|
-
# The drawdown request's originator's account number.
|
40
|
-
sig { returns(String) }
|
41
|
-
attr_accessor :originator_account_number
|
42
|
-
|
43
|
-
# The drawdown request's originator's routing number.
|
44
|
-
sig { returns(String) }
|
45
|
-
attr_accessor :originator_routing_number
|
46
|
-
|
47
35
|
# The Account Number to which the recipient of this request is being requested to
|
48
36
|
# send funds from.
|
49
37
|
sig { returns(String) }
|
50
38
|
attr_accessor :recipient_account_number_id
|
51
39
|
|
52
|
-
#
|
40
|
+
# A free-form address field set by the sender representing the first line of the
|
41
|
+
# creditor's address.
|
42
|
+
sig { returns(T.nilable(String)) }
|
43
|
+
attr_reader :creditor_address_line1
|
44
|
+
|
45
|
+
sig { params(creditor_address_line1: String).void }
|
46
|
+
attr_writer :creditor_address_line1
|
47
|
+
|
48
|
+
# A free-form address field set by the sender representing the second line of the
|
49
|
+
# creditor's address.
|
50
|
+
sig { returns(T.nilable(String)) }
|
51
|
+
attr_reader :creditor_address_line2
|
52
|
+
|
53
|
+
sig { params(creditor_address_line2: String).void }
|
54
|
+
attr_writer :creditor_address_line2
|
55
|
+
|
56
|
+
# A free-form address field set by the sender representing the third line of the
|
57
|
+
# creditor's address.
|
53
58
|
sig { returns(T.nilable(String)) }
|
54
|
-
attr_reader :
|
59
|
+
attr_reader :creditor_address_line3
|
55
60
|
|
56
|
-
sig { params(
|
57
|
-
attr_writer :
|
61
|
+
sig { params(creditor_address_line3: String).void }
|
62
|
+
attr_writer :creditor_address_line3
|
58
63
|
|
59
|
-
#
|
64
|
+
# A free-form name field set by the sender representing the creditor's name.
|
60
65
|
sig { returns(T.nilable(String)) }
|
61
|
-
attr_reader :
|
66
|
+
attr_reader :creditor_name
|
62
67
|
|
63
|
-
sig { params(
|
64
|
-
attr_writer :
|
68
|
+
sig { params(creditor_name: String).void }
|
69
|
+
attr_writer :creditor_name
|
65
70
|
|
66
|
-
#
|
71
|
+
# The debtor's account number.
|
67
72
|
sig { returns(T.nilable(String)) }
|
68
|
-
attr_reader :
|
73
|
+
attr_reader :debtor_account_number
|
69
74
|
|
70
|
-
sig { params(
|
71
|
-
attr_writer :
|
75
|
+
sig { params(debtor_account_number: String).void }
|
76
|
+
attr_writer :debtor_account_number
|
72
77
|
|
73
|
-
#
|
78
|
+
# A free-form address field set by the sender representing the first line of the
|
79
|
+
# debtor's address.
|
74
80
|
sig { returns(T.nilable(String)) }
|
75
|
-
attr_reader :
|
81
|
+
attr_reader :debtor_address_line1
|
76
82
|
|
77
|
-
sig { params(
|
78
|
-
attr_writer :
|
83
|
+
sig { params(debtor_address_line1: String).void }
|
84
|
+
attr_writer :debtor_address_line1
|
79
85
|
|
80
|
-
#
|
86
|
+
# A free-form address field set by the sender representing the second line of the
|
87
|
+
# debtor's address.
|
81
88
|
sig { returns(T.nilable(String)) }
|
82
|
-
attr_reader :
|
89
|
+
attr_reader :debtor_address_line2
|
83
90
|
|
84
|
-
sig { params(
|
85
|
-
attr_writer :
|
91
|
+
sig { params(debtor_address_line2: String).void }
|
92
|
+
attr_writer :debtor_address_line2
|
86
93
|
|
87
|
-
#
|
94
|
+
# A free-form address field set by the sender.
|
88
95
|
sig { returns(T.nilable(String)) }
|
89
|
-
attr_reader :
|
96
|
+
attr_reader :debtor_address_line3
|
90
97
|
|
91
|
-
sig { params(
|
92
|
-
attr_writer :
|
98
|
+
sig { params(debtor_address_line3: String).void }
|
99
|
+
attr_writer :debtor_address_line3
|
93
100
|
|
94
|
-
#
|
101
|
+
# A free-form name field set by the sender representing the debtor's name.
|
95
102
|
sig { returns(T.nilable(String)) }
|
96
|
-
attr_reader :
|
103
|
+
attr_reader :debtor_name
|
97
104
|
|
98
|
-
sig { params(
|
99
|
-
attr_writer :
|
105
|
+
sig { params(debtor_name: String).void }
|
106
|
+
attr_writer :debtor_name
|
100
107
|
|
101
|
-
# The
|
108
|
+
# The debtor's routing number.
|
102
109
|
sig { returns(T.nilable(String)) }
|
103
|
-
attr_reader :
|
110
|
+
attr_reader :debtor_routing_number
|
104
111
|
|
105
|
-
sig { params(
|
106
|
-
attr_writer :
|
112
|
+
sig { params(debtor_routing_number: String).void }
|
113
|
+
attr_writer :debtor_routing_number
|
107
114
|
|
108
|
-
#
|
109
|
-
# beneficiary.
|
115
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
110
116
|
sig { returns(T.nilable(String)) }
|
111
|
-
attr_reader :
|
117
|
+
attr_reader :end_to_end_identification
|
112
118
|
|
113
|
-
sig { params(
|
114
|
-
attr_writer :
|
119
|
+
sig { params(end_to_end_identification: String).void }
|
120
|
+
attr_writer :end_to_end_identification
|
115
121
|
|
116
|
-
#
|
117
|
-
# beneficiary.
|
122
|
+
# The sending bank's identifier for the wire transfer.
|
118
123
|
sig { returns(T.nilable(String)) }
|
119
|
-
attr_reader :
|
124
|
+
attr_reader :instruction_identification
|
120
125
|
|
121
|
-
sig { params(
|
122
|
-
attr_writer :
|
126
|
+
sig { params(instruction_identification: String).void }
|
127
|
+
attr_writer :instruction_identification
|
123
128
|
|
124
|
-
#
|
125
|
-
#
|
129
|
+
# The Unique End-to-end Transaction Reference
|
130
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
131
|
+
# of the transfer.
|
126
132
|
sig { returns(T.nilable(String)) }
|
127
|
-
attr_reader :
|
133
|
+
attr_reader :unique_end_to_end_transaction_reference
|
128
134
|
|
129
|
-
sig { params(
|
130
|
-
attr_writer :
|
135
|
+
sig { params(unique_end_to_end_transaction_reference: String).void }
|
136
|
+
attr_writer :unique_end_to_end_transaction_reference
|
131
137
|
|
132
|
-
#
|
133
|
-
# beneficiary.
|
138
|
+
# A free-form message set by the sender.
|
134
139
|
sig { returns(T.nilable(String)) }
|
135
|
-
attr_reader :
|
140
|
+
attr_reader :unstructured_remittance_information
|
136
141
|
|
137
|
-
sig { params(
|
138
|
-
attr_writer :
|
142
|
+
sig { params(unstructured_remittance_information: String).void }
|
143
|
+
attr_writer :unstructured_remittance_information
|
139
144
|
|
140
145
|
sig do
|
141
146
|
params(
|
142
147
|
amount: Integer,
|
143
|
-
|
144
|
-
|
148
|
+
creditor_account_number: String,
|
149
|
+
creditor_routing_number: String,
|
145
150
|
currency: String,
|
146
|
-
message_to_recipient: String,
|
147
|
-
originator_account_number: String,
|
148
|
-
originator_routing_number: String,
|
149
151
|
recipient_account_number_id: String,
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
152
|
+
creditor_address_line1: String,
|
153
|
+
creditor_address_line2: String,
|
154
|
+
creditor_address_line3: String,
|
155
|
+
creditor_name: String,
|
156
|
+
debtor_account_number: String,
|
157
|
+
debtor_address_line1: String,
|
158
|
+
debtor_address_line2: String,
|
159
|
+
debtor_address_line3: String,
|
160
|
+
debtor_name: String,
|
161
|
+
debtor_routing_number: String,
|
162
|
+
end_to_end_identification: String,
|
163
|
+
instruction_identification: String,
|
164
|
+
unique_end_to_end_transaction_reference: String,
|
165
|
+
unstructured_remittance_information: String,
|
162
166
|
request_options: Increase::RequestOptions::OrHash
|
163
167
|
).returns(T.attached_class)
|
164
168
|
end
|
165
169
|
def self.new(
|
166
170
|
# The amount being requested in cents.
|
167
171
|
amount:,
|
168
|
-
# The
|
169
|
-
|
170
|
-
# The
|
171
|
-
|
172
|
+
# The creditor's account number.
|
173
|
+
creditor_account_number:,
|
174
|
+
# The creditor's routing number.
|
175
|
+
creditor_routing_number:,
|
172
176
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
|
173
177
|
# requested. Will always be "USD".
|
174
178
|
currency:,
|
175
|
-
# A message from the drawdown request's originator.
|
176
|
-
message_to_recipient:,
|
177
|
-
# The drawdown request's originator's account number.
|
178
|
-
originator_account_number:,
|
179
|
-
# The drawdown request's originator's routing number.
|
180
|
-
originator_routing_number:,
|
181
179
|
# The Account Number to which the recipient of this request is being requested to
|
182
180
|
# send funds from.
|
183
181
|
recipient_account_number_id:,
|
184
|
-
#
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
#
|
189
|
-
|
190
|
-
#
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
#
|
199
|
-
|
200
|
-
#
|
201
|
-
#
|
202
|
-
|
203
|
-
#
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
#
|
208
|
-
|
209
|
-
#
|
210
|
-
|
211
|
-
|
182
|
+
# A free-form address field set by the sender representing the first line of the
|
183
|
+
# creditor's address.
|
184
|
+
creditor_address_line1: nil,
|
185
|
+
# A free-form address field set by the sender representing the second line of the
|
186
|
+
# creditor's address.
|
187
|
+
creditor_address_line2: nil,
|
188
|
+
# A free-form address field set by the sender representing the third line of the
|
189
|
+
# creditor's address.
|
190
|
+
creditor_address_line3: nil,
|
191
|
+
# A free-form name field set by the sender representing the creditor's name.
|
192
|
+
creditor_name: nil,
|
193
|
+
# The debtor's account number.
|
194
|
+
debtor_account_number: nil,
|
195
|
+
# A free-form address field set by the sender representing the first line of the
|
196
|
+
# debtor's address.
|
197
|
+
debtor_address_line1: nil,
|
198
|
+
# A free-form address field set by the sender representing the second line of the
|
199
|
+
# debtor's address.
|
200
|
+
debtor_address_line2: nil,
|
201
|
+
# A free-form address field set by the sender.
|
202
|
+
debtor_address_line3: nil,
|
203
|
+
# A free-form name field set by the sender representing the debtor's name.
|
204
|
+
debtor_name: nil,
|
205
|
+
# The debtor's routing number.
|
206
|
+
debtor_routing_number: nil,
|
207
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
208
|
+
end_to_end_identification: nil,
|
209
|
+
# The sending bank's identifier for the wire transfer.
|
210
|
+
instruction_identification: nil,
|
211
|
+
# The Unique End-to-end Transaction Reference
|
212
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
213
|
+
# of the transfer.
|
214
|
+
unique_end_to_end_transaction_reference: nil,
|
215
|
+
# A free-form message set by the sender.
|
216
|
+
unstructured_remittance_information: nil,
|
212
217
|
request_options: {}
|
213
218
|
)
|
214
219
|
end
|
@@ -217,25 +222,24 @@ module Increase
|
|
217
222
|
override.returns(
|
218
223
|
{
|
219
224
|
amount: Integer,
|
220
|
-
|
221
|
-
|
225
|
+
creditor_account_number: String,
|
226
|
+
creditor_routing_number: String,
|
222
227
|
currency: String,
|
223
|
-
message_to_recipient: String,
|
224
|
-
originator_account_number: String,
|
225
|
-
originator_routing_number: String,
|
226
228
|
recipient_account_number_id: String,
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
229
|
+
creditor_address_line1: String,
|
230
|
+
creditor_address_line2: String,
|
231
|
+
creditor_address_line3: String,
|
232
|
+
creditor_name: String,
|
233
|
+
debtor_account_number: String,
|
234
|
+
debtor_address_line1: String,
|
235
|
+
debtor_address_line2: String,
|
236
|
+
debtor_address_line3: String,
|
237
|
+
debtor_name: String,
|
238
|
+
debtor_routing_number: String,
|
239
|
+
end_to_end_identification: String,
|
240
|
+
instruction_identification: String,
|
241
|
+
unique_end_to_end_transaction_reference: String,
|
242
|
+
unstructured_remittance_information: String,
|
239
243
|
request_options: Increase::RequestOptions
|
240
244
|
}
|
241
245
|
)
|
@@ -9487,11 +9487,11 @@ module Increase
|
|
9487
9487
|
|
9488
9488
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
9489
9489
|
# message.
|
9490
|
-
sig { returns(Date) }
|
9490
|
+
sig { returns(T.nilable(Date)) }
|
9491
9491
|
attr_accessor :previous_message_input_cycle_date
|
9492
9492
|
|
9493
9493
|
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
9494
|
-
sig { returns(String) }
|
9494
|
+
sig { returns(T.nilable(String)) }
|
9495
9495
|
attr_accessor :previous_message_input_message_accountability_data
|
9496
9496
|
|
9497
9497
|
# The Fedwire sequence number for the wire transfer that was reversed.
|
@@ -9499,7 +9499,7 @@ module Increase
|
|
9499
9499
|
attr_accessor :previous_message_input_sequence_number
|
9500
9500
|
|
9501
9501
|
# The Fedwire input source identifier for the wire transfer that was reversed.
|
9502
|
-
sig { returns(String) }
|
9502
|
+
sig { returns(T.nilable(String)) }
|
9503
9503
|
attr_accessor :previous_message_input_source
|
9504
9504
|
|
9505
9505
|
# Information included in the wire reversal for the receiving financial
|
@@ -9537,10 +9537,11 @@ module Increase
|
|
9537
9537
|
input_source: String,
|
9538
9538
|
originator_routing_number: T.nilable(String),
|
9539
9539
|
originator_to_beneficiary_information: T.nilable(String),
|
9540
|
-
previous_message_input_cycle_date: Date,
|
9541
|
-
previous_message_input_message_accountability_data:
|
9540
|
+
previous_message_input_cycle_date: T.nilable(Date),
|
9541
|
+
previous_message_input_message_accountability_data:
|
9542
|
+
T.nilable(String),
|
9542
9543
|
previous_message_input_sequence_number: String,
|
9543
|
-
previous_message_input_source: String,
|
9544
|
+
previous_message_input_source: T.nilable(String),
|
9544
9545
|
receiver_financial_institution_information: T.nilable(String),
|
9545
9546
|
sender_reference: T.nilable(String),
|
9546
9547
|
transaction_id: String,
|
@@ -9606,10 +9607,11 @@ module Increase
|
|
9606
9607
|
input_source: String,
|
9607
9608
|
originator_routing_number: T.nilable(String),
|
9608
9609
|
originator_to_beneficiary_information: T.nilable(String),
|
9609
|
-
previous_message_input_cycle_date: Date,
|
9610
|
-
previous_message_input_message_accountability_data:
|
9610
|
+
previous_message_input_cycle_date: T.nilable(Date),
|
9611
|
+
previous_message_input_message_accountability_data:
|
9612
|
+
T.nilable(String),
|
9611
9613
|
previous_message_input_sequence_number: String,
|
9612
|
-
previous_message_input_source: String,
|
9614
|
+
previous_message_input_source: T.nilable(String),
|
9613
9615
|
receiver_financial_institution_information: T.nilable(String),
|
9614
9616
|
sender_reference: T.nilable(String),
|
9615
9617
|
transaction_id: String,
|
@@ -738,11 +738,11 @@ module Increase
|
|
738
738
|
|
739
739
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
740
740
|
# message.
|
741
|
-
sig { returns(Date) }
|
741
|
+
sig { returns(T.nilable(Date)) }
|
742
742
|
attr_accessor :previous_message_input_cycle_date
|
743
743
|
|
744
744
|
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
745
|
-
sig { returns(String) }
|
745
|
+
sig { returns(T.nilable(String)) }
|
746
746
|
attr_accessor :previous_message_input_message_accountability_data
|
747
747
|
|
748
748
|
# The Fedwire sequence number for the wire transfer that was reversed.
|
@@ -750,7 +750,7 @@ module Increase
|
|
750
750
|
attr_accessor :previous_message_input_sequence_number
|
751
751
|
|
752
752
|
# The Fedwire input source identifier for the wire transfer that was reversed.
|
753
|
-
sig { returns(String) }
|
753
|
+
sig { returns(T.nilable(String)) }
|
754
754
|
attr_accessor :previous_message_input_source
|
755
755
|
|
756
756
|
# Information included in the wire reversal for the receiving financial
|
@@ -784,10 +784,11 @@ module Increase
|
|
784
784
|
input_source: String,
|
785
785
|
originator_routing_number: T.nilable(String),
|
786
786
|
originator_to_beneficiary_information: T.nilable(String),
|
787
|
-
previous_message_input_cycle_date: Date,
|
788
|
-
previous_message_input_message_accountability_data:
|
787
|
+
previous_message_input_cycle_date: T.nilable(Date),
|
788
|
+
previous_message_input_message_accountability_data:
|
789
|
+
T.nilable(String),
|
789
790
|
previous_message_input_sequence_number: String,
|
790
|
-
previous_message_input_source: String,
|
791
|
+
previous_message_input_source: T.nilable(String),
|
791
792
|
receiver_financial_institution_information: T.nilable(String),
|
792
793
|
sender_reference: T.nilable(String),
|
793
794
|
transaction_id: String,
|
@@ -853,10 +854,11 @@ module Increase
|
|
853
854
|
input_source: String,
|
854
855
|
originator_routing_number: T.nilable(String),
|
855
856
|
originator_to_beneficiary_information: T.nilable(String),
|
856
|
-
previous_message_input_cycle_date: Date,
|
857
|
-
previous_message_input_message_accountability_data:
|
857
|
+
previous_message_input_cycle_date: T.nilable(Date),
|
858
|
+
previous_message_input_message_accountability_data:
|
859
|
+
T.nilable(String),
|
858
860
|
previous_message_input_sequence_number: String,
|
859
|
-
previous_message_input_source: String,
|
861
|
+
previous_message_input_source: T.nilable(String),
|
860
862
|
receiver_financial_institution_information: T.nilable(String),
|
861
863
|
sender_reference: T.nilable(String),
|
862
864
|
transaction_id: String,
|
@@ -9,75 +9,75 @@ module Increase
|
|
9
9
|
sig do
|
10
10
|
params(
|
11
11
|
amount: Integer,
|
12
|
-
|
13
|
-
|
12
|
+
creditor_account_number: String,
|
13
|
+
creditor_routing_number: String,
|
14
14
|
currency: String,
|
15
|
-
message_to_recipient: String,
|
16
|
-
originator_account_number: String,
|
17
|
-
originator_routing_number: String,
|
18
15
|
recipient_account_number_id: String,
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
16
|
+
creditor_address_line1: String,
|
17
|
+
creditor_address_line2: String,
|
18
|
+
creditor_address_line3: String,
|
19
|
+
creditor_name: String,
|
20
|
+
debtor_account_number: String,
|
21
|
+
debtor_address_line1: String,
|
22
|
+
debtor_address_line2: String,
|
23
|
+
debtor_address_line3: String,
|
24
|
+
debtor_name: String,
|
25
|
+
debtor_routing_number: String,
|
26
|
+
end_to_end_identification: String,
|
27
|
+
instruction_identification: String,
|
28
|
+
unique_end_to_end_transaction_reference: String,
|
29
|
+
unstructured_remittance_information: String,
|
31
30
|
request_options: Increase::RequestOptions::OrHash
|
32
31
|
).returns(Increase::InboundWireDrawdownRequest)
|
33
32
|
end
|
34
33
|
def create(
|
35
34
|
# The amount being requested in cents.
|
36
35
|
amount:,
|
37
|
-
# The
|
38
|
-
|
39
|
-
# The
|
40
|
-
|
36
|
+
# The creditor's account number.
|
37
|
+
creditor_account_number:,
|
38
|
+
# The creditor's routing number.
|
39
|
+
creditor_routing_number:,
|
41
40
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
|
42
41
|
# requested. Will always be "USD".
|
43
42
|
currency:,
|
44
|
-
# A message from the drawdown request's originator.
|
45
|
-
message_to_recipient:,
|
46
|
-
# The drawdown request's originator's account number.
|
47
|
-
originator_account_number:,
|
48
|
-
# The drawdown request's originator's routing number.
|
49
|
-
originator_routing_number:,
|
50
43
|
# The Account Number to which the recipient of this request is being requested to
|
51
44
|
# send funds from.
|
52
45
|
recipient_account_number_id:,
|
53
|
-
#
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
#
|
58
|
-
|
59
|
-
#
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
#
|
68
|
-
|
69
|
-
#
|
70
|
-
#
|
71
|
-
|
72
|
-
#
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
#
|
77
|
-
|
78
|
-
#
|
79
|
-
|
80
|
-
|
46
|
+
# A free-form address field set by the sender representing the first line of the
|
47
|
+
# creditor's address.
|
48
|
+
creditor_address_line1: nil,
|
49
|
+
# A free-form address field set by the sender representing the second line of the
|
50
|
+
# creditor's address.
|
51
|
+
creditor_address_line2: nil,
|
52
|
+
# A free-form address field set by the sender representing the third line of the
|
53
|
+
# creditor's address.
|
54
|
+
creditor_address_line3: nil,
|
55
|
+
# A free-form name field set by the sender representing the creditor's name.
|
56
|
+
creditor_name: nil,
|
57
|
+
# The debtor's account number.
|
58
|
+
debtor_account_number: nil,
|
59
|
+
# A free-form address field set by the sender representing the first line of the
|
60
|
+
# debtor's address.
|
61
|
+
debtor_address_line1: nil,
|
62
|
+
# A free-form address field set by the sender representing the second line of the
|
63
|
+
# debtor's address.
|
64
|
+
debtor_address_line2: nil,
|
65
|
+
# A free-form address field set by the sender.
|
66
|
+
debtor_address_line3: nil,
|
67
|
+
# A free-form name field set by the sender representing the debtor's name.
|
68
|
+
debtor_name: nil,
|
69
|
+
# The debtor's routing number.
|
70
|
+
debtor_routing_number: nil,
|
71
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
72
|
+
end_to_end_identification: nil,
|
73
|
+
# The sending bank's identifier for the wire transfer.
|
74
|
+
instruction_identification: nil,
|
75
|
+
# The Unique End-to-end Transaction Reference
|
76
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
77
|
+
# of the transfer.
|
78
|
+
unique_end_to_end_transaction_reference: nil,
|
79
|
+
# A free-form message set by the sender.
|
80
|
+
unstructured_remittance_information: nil,
|
81
81
|
request_options: {}
|
82
82
|
)
|
83
83
|
end
|