increase 1.37.1 → 1.38.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/inbound_wire_transfer.rb +108 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/inbound_wire_transfer.rbi +110 -0
- data/sig/increase/models/inbound_wire_transfer.rbs +65 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c909d7b87634a7b4243ff4825ff00d7e234202569b9c17e22bbbda61835453f
|
|
4
|
+
data.tar.gz: ecdf01af5c9721070e995eedd7b7a5484b1fdcb871a9f950c137723d66b8c544
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dbbf0308088954faf0e5922750074c6dee34c22587f9a3308b207e725bb8ff4882071eebe6c10946f919495aee10a82c4c285ab482f4e08068e2fc1f8124bd4b
|
|
7
|
+
data.tar.gz: 4dd1585959dcb251cae1614ea797c995d493854d7d48bd6b730c47f72e6504ff566c278df037b497b1521b0babf97c0754080877865b7c0d5bd2e798a2f67633
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.38.0 (2025-08-19)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.37.1...v1.38.0](https://github.com/Increase/increase-ruby/compare/v1.37.1...v1.38.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([e013ac0](https://github.com/Increase/increase-ruby/commit/e013ac0b0862670e3cb4052dc5a4a14722beed4e))
|
|
10
|
+
|
|
3
11
|
## 1.37.1 (2025-08-19)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.37.0...v1.37.1](https://github.com/Increase/increase-ruby/compare/v1.37.0...v1.37.1)
|
data/README.md
CHANGED
|
@@ -65,12 +65,66 @@ module Increase
|
|
|
65
65
|
# @return [Time]
|
|
66
66
|
required :created_at, Time
|
|
67
67
|
|
|
68
|
+
# @!attribute creditor_address_line1
|
|
69
|
+
# A free-form address field set by the sender.
|
|
70
|
+
#
|
|
71
|
+
# @return [String, nil]
|
|
72
|
+
required :creditor_address_line1, String, nil?: true
|
|
73
|
+
|
|
74
|
+
# @!attribute creditor_address_line2
|
|
75
|
+
# A free-form address field set by the sender.
|
|
76
|
+
#
|
|
77
|
+
# @return [String, nil]
|
|
78
|
+
required :creditor_address_line2, String, nil?: true
|
|
79
|
+
|
|
80
|
+
# @!attribute creditor_address_line3
|
|
81
|
+
# A free-form address field set by the sender.
|
|
82
|
+
#
|
|
83
|
+
# @return [String, nil]
|
|
84
|
+
required :creditor_address_line3, String, nil?: true
|
|
85
|
+
|
|
86
|
+
# @!attribute creditor_name
|
|
87
|
+
# A name set by the sender.
|
|
88
|
+
#
|
|
89
|
+
# @return [String, nil]
|
|
90
|
+
required :creditor_name, String, nil?: true
|
|
91
|
+
|
|
92
|
+
# @!attribute debtor_address_line1
|
|
93
|
+
# A free-form address field set by the sender.
|
|
94
|
+
#
|
|
95
|
+
# @return [String, nil]
|
|
96
|
+
required :debtor_address_line1, String, nil?: true
|
|
97
|
+
|
|
98
|
+
# @!attribute debtor_address_line2
|
|
99
|
+
# A free-form address field set by the sender.
|
|
100
|
+
#
|
|
101
|
+
# @return [String, nil]
|
|
102
|
+
required :debtor_address_line2, String, nil?: true
|
|
103
|
+
|
|
104
|
+
# @!attribute debtor_address_line3
|
|
105
|
+
# A free-form address field set by the sender.
|
|
106
|
+
#
|
|
107
|
+
# @return [String, nil]
|
|
108
|
+
required :debtor_address_line3, String, nil?: true
|
|
109
|
+
|
|
110
|
+
# @!attribute debtor_name
|
|
111
|
+
# A name set by the sender.
|
|
112
|
+
#
|
|
113
|
+
# @return [String, nil]
|
|
114
|
+
required :debtor_name, String, nil?: true
|
|
115
|
+
|
|
68
116
|
# @!attribute description
|
|
69
117
|
# An Increase-constructed description of the transfer.
|
|
70
118
|
#
|
|
71
119
|
# @return [String]
|
|
72
120
|
required :description, String
|
|
73
121
|
|
|
122
|
+
# @!attribute end_to_end_identification
|
|
123
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
|
124
|
+
#
|
|
125
|
+
# @return [String, nil]
|
|
126
|
+
required :end_to_end_identification, String, nil?: true
|
|
127
|
+
|
|
74
128
|
# @!attribute input_message_accountability_data
|
|
75
129
|
# A unique identifier available to the originating and receiving banks, commonly
|
|
76
130
|
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
|
@@ -79,6 +133,19 @@ module Increase
|
|
|
79
133
|
# @return [String, nil]
|
|
80
134
|
required :input_message_accountability_data, String, nil?: true
|
|
81
135
|
|
|
136
|
+
# @!attribute instructing_agent_routing_number
|
|
137
|
+
# The American Banking Association (ABA) routing number of the bank that sent the
|
|
138
|
+
# wire.
|
|
139
|
+
#
|
|
140
|
+
# @return [String, nil]
|
|
141
|
+
required :instructing_agent_routing_number, String, nil?: true
|
|
142
|
+
|
|
143
|
+
# @!attribute instruction_identification
|
|
144
|
+
# The sending bank's identifier for the wire transfer.
|
|
145
|
+
#
|
|
146
|
+
# @return [String, nil]
|
|
147
|
+
required :instruction_identification, String, nil?: true
|
|
148
|
+
|
|
82
149
|
# @!attribute originator_address_line1
|
|
83
150
|
# The address of the wire originator, set by the sending bank.
|
|
84
151
|
#
|
|
@@ -166,13 +233,27 @@ module Increase
|
|
|
166
233
|
# @return [Symbol, Increase::Models::InboundWireTransfer::Type]
|
|
167
234
|
required :type, enum: -> { Increase::InboundWireTransfer::Type }
|
|
168
235
|
|
|
236
|
+
# @!attribute unique_end_to_end_transaction_reference
|
|
237
|
+
# The Unique End-to-end Transaction Reference
|
|
238
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
|
239
|
+
# of the transfer.
|
|
240
|
+
#
|
|
241
|
+
# @return [String, nil]
|
|
242
|
+
required :unique_end_to_end_transaction_reference, String, nil?: true
|
|
243
|
+
|
|
244
|
+
# @!attribute unstructured_remittance_information
|
|
245
|
+
# A free-form message set by the sender.
|
|
246
|
+
#
|
|
247
|
+
# @return [String, nil]
|
|
248
|
+
required :unstructured_remittance_information, String, nil?: true
|
|
249
|
+
|
|
169
250
|
# @!attribute wire_drawdown_request_id
|
|
170
251
|
# The wire drawdown request the inbound wire transfer is fulfilling.
|
|
171
252
|
#
|
|
172
253
|
# @return [String, nil]
|
|
173
254
|
required :wire_drawdown_request_id, String, nil?: true
|
|
174
255
|
|
|
175
|
-
# @!method initialize(id:, account_id:, account_number_id:, amount:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_reference:, created_at:, description:, input_message_accountability_data:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, originator_routing_number:, originator_to_beneficiary_information:, originator_to_beneficiary_information_line1:, originator_to_beneficiary_information_line2:, originator_to_beneficiary_information_line3:, originator_to_beneficiary_information_line4:, reversal:, sender_reference:, status:, type:, wire_drawdown_request_id:)
|
|
256
|
+
# @!method initialize(id:, account_id:, account_number_id:, amount:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_reference:, created_at:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, description:, end_to_end_identification:, input_message_accountability_data:, instructing_agent_routing_number:, instruction_identification:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, originator_routing_number:, originator_to_beneficiary_information:, originator_to_beneficiary_information_line1:, originator_to_beneficiary_information_line2:, originator_to_beneficiary_information_line3:, originator_to_beneficiary_information_line4:, reversal:, sender_reference:, status:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:, wire_drawdown_request_id:)
|
|
176
257
|
# Some parameter documentations has been truncated, see
|
|
177
258
|
# {Increase::Models::InboundWireTransfer} for more details.
|
|
178
259
|
#
|
|
@@ -199,10 +280,32 @@ module Increase
|
|
|
199
280
|
#
|
|
200
281
|
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
|
201
282
|
#
|
|
283
|
+
# @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
|
|
284
|
+
#
|
|
285
|
+
# @param creditor_address_line2 [String, nil] A free-form address field set by the sender.
|
|
286
|
+
#
|
|
287
|
+
# @param creditor_address_line3 [String, nil] A free-form address field set by the sender.
|
|
288
|
+
#
|
|
289
|
+
# @param creditor_name [String, nil] A name set by the sender.
|
|
290
|
+
#
|
|
291
|
+
# @param debtor_address_line1 [String, nil] A free-form address field set by the sender.
|
|
292
|
+
#
|
|
293
|
+
# @param debtor_address_line2 [String, nil] A free-form address field set by the sender.
|
|
294
|
+
#
|
|
295
|
+
# @param debtor_address_line3 [String, nil] A free-form address field set by the sender.
|
|
296
|
+
#
|
|
297
|
+
# @param debtor_name [String, nil] A name set by the sender.
|
|
298
|
+
#
|
|
202
299
|
# @param description [String] An Increase-constructed description of the transfer.
|
|
203
300
|
#
|
|
301
|
+
# @param end_to_end_identification [String, nil] A free-form reference string set by the sender, to help identify the transfer.
|
|
302
|
+
#
|
|
204
303
|
# @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
|
|
205
304
|
#
|
|
305
|
+
# @param instructing_agent_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank that sent the
|
|
306
|
+
#
|
|
307
|
+
# @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
|
|
308
|
+
#
|
|
206
309
|
# @param originator_address_line1 [String, nil] The address of the wire originator, set by the sending bank.
|
|
207
310
|
#
|
|
208
311
|
# @param originator_address_line2 [String, nil] The address of the wire originator, set by the sending bank.
|
|
@@ -231,6 +334,10 @@ module Increase
|
|
|
231
334
|
#
|
|
232
335
|
# @param type [Symbol, Increase::Models::InboundWireTransfer::Type] A constant representing the object's type. For this resource it will always be `
|
|
233
336
|
#
|
|
337
|
+
# @param unique_end_to_end_transaction_reference [String, nil] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
|
|
338
|
+
#
|
|
339
|
+
# @param unstructured_remittance_information [String, nil] A free-form message set by the sender.
|
|
340
|
+
#
|
|
234
341
|
# @param wire_drawdown_request_id [String, nil] The wire drawdown request the inbound wire transfer is fulfilling.
|
|
235
342
|
|
|
236
343
|
# @see Increase::Models::InboundWireTransfer#reversal
|
data/lib/increase/version.rb
CHANGED
|
@@ -49,16 +49,61 @@ module Increase
|
|
|
49
49
|
sig { returns(Time) }
|
|
50
50
|
attr_accessor :created_at
|
|
51
51
|
|
|
52
|
+
# A free-form address field set by the sender.
|
|
53
|
+
sig { returns(T.nilable(String)) }
|
|
54
|
+
attr_accessor :creditor_address_line1
|
|
55
|
+
|
|
56
|
+
# A free-form address field set by the sender.
|
|
57
|
+
sig { returns(T.nilable(String)) }
|
|
58
|
+
attr_accessor :creditor_address_line2
|
|
59
|
+
|
|
60
|
+
# A free-form address field set by the sender.
|
|
61
|
+
sig { returns(T.nilable(String)) }
|
|
62
|
+
attr_accessor :creditor_address_line3
|
|
63
|
+
|
|
64
|
+
# A name set by the sender.
|
|
65
|
+
sig { returns(T.nilable(String)) }
|
|
66
|
+
attr_accessor :creditor_name
|
|
67
|
+
|
|
68
|
+
# A free-form address field set by the sender.
|
|
69
|
+
sig { returns(T.nilable(String)) }
|
|
70
|
+
attr_accessor :debtor_address_line1
|
|
71
|
+
|
|
72
|
+
# A free-form address field set by the sender.
|
|
73
|
+
sig { returns(T.nilable(String)) }
|
|
74
|
+
attr_accessor :debtor_address_line2
|
|
75
|
+
|
|
76
|
+
# A free-form address field set by the sender.
|
|
77
|
+
sig { returns(T.nilable(String)) }
|
|
78
|
+
attr_accessor :debtor_address_line3
|
|
79
|
+
|
|
80
|
+
# A name set by the sender.
|
|
81
|
+
sig { returns(T.nilable(String)) }
|
|
82
|
+
attr_accessor :debtor_name
|
|
83
|
+
|
|
52
84
|
# An Increase-constructed description of the transfer.
|
|
53
85
|
sig { returns(String) }
|
|
54
86
|
attr_accessor :description
|
|
55
87
|
|
|
88
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
|
89
|
+
sig { returns(T.nilable(String)) }
|
|
90
|
+
attr_accessor :end_to_end_identification
|
|
91
|
+
|
|
56
92
|
# A unique identifier available to the originating and receiving banks, commonly
|
|
57
93
|
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
|
58
94
|
# service and is helpful when debugging wires with the originating bank.
|
|
59
95
|
sig { returns(T.nilable(String)) }
|
|
60
96
|
attr_accessor :input_message_accountability_data
|
|
61
97
|
|
|
98
|
+
# The American Banking Association (ABA) routing number of the bank that sent the
|
|
99
|
+
# wire.
|
|
100
|
+
sig { returns(T.nilable(String)) }
|
|
101
|
+
attr_accessor :instructing_agent_routing_number
|
|
102
|
+
|
|
103
|
+
# The sending bank's identifier for the wire transfer.
|
|
104
|
+
sig { returns(T.nilable(String)) }
|
|
105
|
+
attr_accessor :instruction_identification
|
|
106
|
+
|
|
62
107
|
# The address of the wire originator, set by the sending bank.
|
|
63
108
|
sig { returns(T.nilable(String)) }
|
|
64
109
|
attr_accessor :originator_address_line1
|
|
@@ -125,6 +170,16 @@ module Increase
|
|
|
125
170
|
sig { returns(Increase::InboundWireTransfer::Type::TaggedSymbol) }
|
|
126
171
|
attr_accessor :type
|
|
127
172
|
|
|
173
|
+
# The Unique End-to-end Transaction Reference
|
|
174
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
|
175
|
+
# of the transfer.
|
|
176
|
+
sig { returns(T.nilable(String)) }
|
|
177
|
+
attr_accessor :unique_end_to_end_transaction_reference
|
|
178
|
+
|
|
179
|
+
# A free-form message set by the sender.
|
|
180
|
+
sig { returns(T.nilable(String)) }
|
|
181
|
+
attr_accessor :unstructured_remittance_information
|
|
182
|
+
|
|
128
183
|
# The wire drawdown request the inbound wire transfer is fulfilling.
|
|
129
184
|
sig { returns(T.nilable(String)) }
|
|
130
185
|
attr_accessor :wire_drawdown_request_id
|
|
@@ -143,8 +198,19 @@ module Increase
|
|
|
143
198
|
beneficiary_name: T.nilable(String),
|
|
144
199
|
beneficiary_reference: T.nilable(String),
|
|
145
200
|
created_at: Time,
|
|
201
|
+
creditor_address_line1: T.nilable(String),
|
|
202
|
+
creditor_address_line2: T.nilable(String),
|
|
203
|
+
creditor_address_line3: T.nilable(String),
|
|
204
|
+
creditor_name: T.nilable(String),
|
|
205
|
+
debtor_address_line1: T.nilable(String),
|
|
206
|
+
debtor_address_line2: T.nilable(String),
|
|
207
|
+
debtor_address_line3: T.nilable(String),
|
|
208
|
+
debtor_name: T.nilable(String),
|
|
146
209
|
description: String,
|
|
210
|
+
end_to_end_identification: T.nilable(String),
|
|
147
211
|
input_message_accountability_data: T.nilable(String),
|
|
212
|
+
instructing_agent_routing_number: T.nilable(String),
|
|
213
|
+
instruction_identification: T.nilable(String),
|
|
148
214
|
originator_address_line1: T.nilable(String),
|
|
149
215
|
originator_address_line2: T.nilable(String),
|
|
150
216
|
originator_address_line3: T.nilable(String),
|
|
@@ -159,6 +225,8 @@ module Increase
|
|
|
159
225
|
sender_reference: T.nilable(String),
|
|
160
226
|
status: Increase::InboundWireTransfer::Status::OrSymbol,
|
|
161
227
|
type: Increase::InboundWireTransfer::Type::OrSymbol,
|
|
228
|
+
unique_end_to_end_transaction_reference: T.nilable(String),
|
|
229
|
+
unstructured_remittance_information: T.nilable(String),
|
|
162
230
|
wire_drawdown_request_id: T.nilable(String)
|
|
163
231
|
).returns(T.attached_class)
|
|
164
232
|
end
|
|
@@ -184,12 +252,35 @@ module Increase
|
|
|
184
252
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
185
253
|
# the inbound wire transfer was created.
|
|
186
254
|
created_at:,
|
|
255
|
+
# A free-form address field set by the sender.
|
|
256
|
+
creditor_address_line1:,
|
|
257
|
+
# A free-form address field set by the sender.
|
|
258
|
+
creditor_address_line2:,
|
|
259
|
+
# A free-form address field set by the sender.
|
|
260
|
+
creditor_address_line3:,
|
|
261
|
+
# A name set by the sender.
|
|
262
|
+
creditor_name:,
|
|
263
|
+
# A free-form address field set by the sender.
|
|
264
|
+
debtor_address_line1:,
|
|
265
|
+
# A free-form address field set by the sender.
|
|
266
|
+
debtor_address_line2:,
|
|
267
|
+
# A free-form address field set by the sender.
|
|
268
|
+
debtor_address_line3:,
|
|
269
|
+
# A name set by the sender.
|
|
270
|
+
debtor_name:,
|
|
187
271
|
# An Increase-constructed description of the transfer.
|
|
188
272
|
description:,
|
|
273
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
|
274
|
+
end_to_end_identification:,
|
|
189
275
|
# A unique identifier available to the originating and receiving banks, commonly
|
|
190
276
|
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
|
191
277
|
# service and is helpful when debugging wires with the originating bank.
|
|
192
278
|
input_message_accountability_data:,
|
|
279
|
+
# The American Banking Association (ABA) routing number of the bank that sent the
|
|
280
|
+
# wire.
|
|
281
|
+
instructing_agent_routing_number:,
|
|
282
|
+
# The sending bank's identifier for the wire transfer.
|
|
283
|
+
instruction_identification:,
|
|
193
284
|
# The address of the wire originator, set by the sending bank.
|
|
194
285
|
originator_address_line1:,
|
|
195
286
|
# The address of the wire originator, set by the sending bank.
|
|
@@ -221,6 +312,12 @@ module Increase
|
|
|
221
312
|
# A constant representing the object's type. For this resource it will always be
|
|
222
313
|
# `inbound_wire_transfer`.
|
|
223
314
|
type:,
|
|
315
|
+
# The Unique End-to-end Transaction Reference
|
|
316
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
|
317
|
+
# of the transfer.
|
|
318
|
+
unique_end_to_end_transaction_reference:,
|
|
319
|
+
# A free-form message set by the sender.
|
|
320
|
+
unstructured_remittance_information:,
|
|
224
321
|
# The wire drawdown request the inbound wire transfer is fulfilling.
|
|
225
322
|
wire_drawdown_request_id:
|
|
226
323
|
)
|
|
@@ -239,8 +336,19 @@ module Increase
|
|
|
239
336
|
beneficiary_name: T.nilable(String),
|
|
240
337
|
beneficiary_reference: T.nilable(String),
|
|
241
338
|
created_at: Time,
|
|
339
|
+
creditor_address_line1: T.nilable(String),
|
|
340
|
+
creditor_address_line2: T.nilable(String),
|
|
341
|
+
creditor_address_line3: T.nilable(String),
|
|
342
|
+
creditor_name: T.nilable(String),
|
|
343
|
+
debtor_address_line1: T.nilable(String),
|
|
344
|
+
debtor_address_line2: T.nilable(String),
|
|
345
|
+
debtor_address_line3: T.nilable(String),
|
|
346
|
+
debtor_name: T.nilable(String),
|
|
242
347
|
description: String,
|
|
348
|
+
end_to_end_identification: T.nilable(String),
|
|
243
349
|
input_message_accountability_data: T.nilable(String),
|
|
350
|
+
instructing_agent_routing_number: T.nilable(String),
|
|
351
|
+
instruction_identification: T.nilable(String),
|
|
244
352
|
originator_address_line1: T.nilable(String),
|
|
245
353
|
originator_address_line2: T.nilable(String),
|
|
246
354
|
originator_address_line3: T.nilable(String),
|
|
@@ -255,6 +363,8 @@ module Increase
|
|
|
255
363
|
sender_reference: T.nilable(String),
|
|
256
364
|
status: Increase::InboundWireTransfer::Status::TaggedSymbol,
|
|
257
365
|
type: Increase::InboundWireTransfer::Type::TaggedSymbol,
|
|
366
|
+
unique_end_to_end_transaction_reference: T.nilable(String),
|
|
367
|
+
unstructured_remittance_information: T.nilable(String),
|
|
258
368
|
wire_drawdown_request_id: T.nilable(String)
|
|
259
369
|
}
|
|
260
370
|
)
|
|
@@ -12,8 +12,19 @@ module Increase
|
|
|
12
12
|
beneficiary_name: String?,
|
|
13
13
|
beneficiary_reference: String?,
|
|
14
14
|
created_at: Time,
|
|
15
|
+
:creditor_address_line1 => String?,
|
|
16
|
+
:creditor_address_line2 => String?,
|
|
17
|
+
:creditor_address_line3 => String?,
|
|
18
|
+
creditor_name: String?,
|
|
19
|
+
:debtor_address_line1 => String?,
|
|
20
|
+
:debtor_address_line2 => String?,
|
|
21
|
+
:debtor_address_line3 => String?,
|
|
22
|
+
debtor_name: String?,
|
|
15
23
|
description: String,
|
|
24
|
+
end_to_end_identification: String?,
|
|
16
25
|
input_message_accountability_data: String?,
|
|
26
|
+
instructing_agent_routing_number: String?,
|
|
27
|
+
instruction_identification: String?,
|
|
17
28
|
:originator_address_line1 => String?,
|
|
18
29
|
:originator_address_line2 => String?,
|
|
19
30
|
:originator_address_line3 => String?,
|
|
@@ -28,6 +39,8 @@ module Increase
|
|
|
28
39
|
sender_reference: String?,
|
|
29
40
|
status: Increase::Models::InboundWireTransfer::status,
|
|
30
41
|
type: Increase::Models::InboundWireTransfer::type_,
|
|
42
|
+
unique_end_to_end_transaction_reference: String?,
|
|
43
|
+
unstructured_remittance_information: String?,
|
|
31
44
|
wire_drawdown_request_id: String?
|
|
32
45
|
}
|
|
33
46
|
|
|
@@ -52,10 +65,32 @@ module Increase
|
|
|
52
65
|
|
|
53
66
|
attr_accessor created_at: Time
|
|
54
67
|
|
|
68
|
+
attr_accessor creditor_address_line1: String?
|
|
69
|
+
|
|
70
|
+
attr_accessor creditor_address_line2: String?
|
|
71
|
+
|
|
72
|
+
attr_accessor creditor_address_line3: String?
|
|
73
|
+
|
|
74
|
+
attr_accessor creditor_name: String?
|
|
75
|
+
|
|
76
|
+
attr_accessor debtor_address_line1: String?
|
|
77
|
+
|
|
78
|
+
attr_accessor debtor_address_line2: String?
|
|
79
|
+
|
|
80
|
+
attr_accessor debtor_address_line3: String?
|
|
81
|
+
|
|
82
|
+
attr_accessor debtor_name: String?
|
|
83
|
+
|
|
55
84
|
attr_accessor description: String
|
|
56
85
|
|
|
86
|
+
attr_accessor end_to_end_identification: String?
|
|
87
|
+
|
|
57
88
|
attr_accessor input_message_accountability_data: String?
|
|
58
89
|
|
|
90
|
+
attr_accessor instructing_agent_routing_number: String?
|
|
91
|
+
|
|
92
|
+
attr_accessor instruction_identification: String?
|
|
93
|
+
|
|
59
94
|
attr_accessor originator_address_line1: String?
|
|
60
95
|
|
|
61
96
|
attr_accessor originator_address_line2: String?
|
|
@@ -84,6 +119,10 @@ module Increase
|
|
|
84
119
|
|
|
85
120
|
attr_accessor type: Increase::Models::InboundWireTransfer::type_
|
|
86
121
|
|
|
122
|
+
attr_accessor unique_end_to_end_transaction_reference: String?
|
|
123
|
+
|
|
124
|
+
attr_accessor unstructured_remittance_information: String?
|
|
125
|
+
|
|
87
126
|
attr_accessor wire_drawdown_request_id: String?
|
|
88
127
|
|
|
89
128
|
def initialize: (
|
|
@@ -97,8 +136,19 @@ module Increase
|
|
|
97
136
|
beneficiary_name: String?,
|
|
98
137
|
beneficiary_reference: String?,
|
|
99
138
|
created_at: Time,
|
|
139
|
+
creditor_address_line1: String?,
|
|
140
|
+
creditor_address_line2: String?,
|
|
141
|
+
creditor_address_line3: String?,
|
|
142
|
+
creditor_name: String?,
|
|
143
|
+
debtor_address_line1: String?,
|
|
144
|
+
debtor_address_line2: String?,
|
|
145
|
+
debtor_address_line3: String?,
|
|
146
|
+
debtor_name: String?,
|
|
100
147
|
description: String,
|
|
148
|
+
end_to_end_identification: String?,
|
|
101
149
|
input_message_accountability_data: String?,
|
|
150
|
+
instructing_agent_routing_number: String?,
|
|
151
|
+
instruction_identification: String?,
|
|
102
152
|
originator_address_line1: String?,
|
|
103
153
|
originator_address_line2: String?,
|
|
104
154
|
originator_address_line3: String?,
|
|
@@ -113,6 +163,8 @@ module Increase
|
|
|
113
163
|
sender_reference: String?,
|
|
114
164
|
status: Increase::Models::InboundWireTransfer::status,
|
|
115
165
|
type: Increase::Models::InboundWireTransfer::type_,
|
|
166
|
+
unique_end_to_end_transaction_reference: String?,
|
|
167
|
+
unstructured_remittance_information: String?,
|
|
116
168
|
wire_drawdown_request_id: String?
|
|
117
169
|
) -> void
|
|
118
170
|
|
|
@@ -127,8 +179,19 @@ module Increase
|
|
|
127
179
|
beneficiary_name: String?,
|
|
128
180
|
beneficiary_reference: String?,
|
|
129
181
|
created_at: Time,
|
|
182
|
+
:creditor_address_line1 => String?,
|
|
183
|
+
:creditor_address_line2 => String?,
|
|
184
|
+
:creditor_address_line3 => String?,
|
|
185
|
+
creditor_name: String?,
|
|
186
|
+
:debtor_address_line1 => String?,
|
|
187
|
+
:debtor_address_line2 => String?,
|
|
188
|
+
:debtor_address_line3 => String?,
|
|
189
|
+
debtor_name: String?,
|
|
130
190
|
description: String,
|
|
191
|
+
end_to_end_identification: String?,
|
|
131
192
|
input_message_accountability_data: String?,
|
|
193
|
+
instructing_agent_routing_number: String?,
|
|
194
|
+
instruction_identification: String?,
|
|
132
195
|
:originator_address_line1 => String?,
|
|
133
196
|
:originator_address_line2 => String?,
|
|
134
197
|
:originator_address_line3 => String?,
|
|
@@ -143,6 +206,8 @@ module Increase
|
|
|
143
206
|
sender_reference: String?,
|
|
144
207
|
status: Increase::Models::InboundWireTransfer::status,
|
|
145
208
|
type: Increase::Models::InboundWireTransfer::type_,
|
|
209
|
+
unique_end_to_end_transaction_reference: String?,
|
|
210
|
+
unstructured_remittance_information: String?,
|
|
146
211
|
wire_drawdown_request_id: String?
|
|
147
212
|
}
|
|
148
213
|
|