increase 1.38.0 → 1.39.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 +1 -130
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/inbound_wire_transfer.rbi +0 -130
- data/sig/increase/models/inbound_wire_transfer.rbs +0 -80
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8b2f6858bc742cd3da02aadf5e4cc469b2fec47544bd062cf78f41fce2d843c
|
4
|
+
data.tar.gz: f951ec2b7095c3447d17bf8d34319445d045b84ba158b649a0249c5bfa349fd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b253c55c3c9242d3fcca0c447afb8f9bb911a2b76502502d1027c888551a97cd842467c542d6d4a70cbef57f17e72199511866d151862785e0a8af64dcda12e
|
7
|
+
data.tar.gz: c55c75c84ac60f9c7d8307164e99c17b0f02b428b139662e8cf58fb34f14728ef2d8018f337d278c087fbc1c4dd164e06029bb99831ecff088b118d18d90d7db
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.39.0 (2025-08-20)
|
4
|
+
|
5
|
+
Full Changelog: [v1.38.0...v1.39.0](https://github.com/Increase/increase-ruby/compare/v1.38.0...v1.39.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([ada8b1d](https://github.com/Increase/increase-ruby/commit/ada8b1db94b95aeb27396d65c0971007845a2105))
|
10
|
+
|
3
11
|
## 1.38.0 (2025-08-19)
|
4
12
|
|
5
13
|
Full Changelog: [v1.37.1...v1.38.0](https://github.com/Increase/increase-ruby/compare/v1.37.1...v1.38.0)
|
data/README.md
CHANGED
@@ -28,36 +28,6 @@ module Increase
|
|
28
28
|
# @return [Integer]
|
29
29
|
required :amount, Integer
|
30
30
|
|
31
|
-
# @!attribute beneficiary_address_line1
|
32
|
-
# A free-form address field set by the sender.
|
33
|
-
#
|
34
|
-
# @return [String, nil]
|
35
|
-
required :beneficiary_address_line1, String, nil?: true
|
36
|
-
|
37
|
-
# @!attribute beneficiary_address_line2
|
38
|
-
# A free-form address field set by the sender.
|
39
|
-
#
|
40
|
-
# @return [String, nil]
|
41
|
-
required :beneficiary_address_line2, String, nil?: true
|
42
|
-
|
43
|
-
# @!attribute beneficiary_address_line3
|
44
|
-
# A free-form address field set by the sender.
|
45
|
-
#
|
46
|
-
# @return [String, nil]
|
47
|
-
required :beneficiary_address_line3, String, nil?: true
|
48
|
-
|
49
|
-
# @!attribute beneficiary_name
|
50
|
-
# A name set by the sender.
|
51
|
-
#
|
52
|
-
# @return [String, nil]
|
53
|
-
required :beneficiary_name, String, nil?: true
|
54
|
-
|
55
|
-
# @!attribute beneficiary_reference
|
56
|
-
# A free-form reference string set by the sender, to help identify the transfer.
|
57
|
-
#
|
58
|
-
# @return [String, nil]
|
59
|
-
required :beneficiary_reference, String, nil?: true
|
60
|
-
|
61
31
|
# @!attribute created_at
|
62
32
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
63
33
|
# the inbound wire transfer was created.
|
@@ -146,67 +116,6 @@ module Increase
|
|
146
116
|
# @return [String, nil]
|
147
117
|
required :instruction_identification, String, nil?: true
|
148
118
|
|
149
|
-
# @!attribute originator_address_line1
|
150
|
-
# The address of the wire originator, set by the sending bank.
|
151
|
-
#
|
152
|
-
# @return [String, nil]
|
153
|
-
required :originator_address_line1, String, nil?: true
|
154
|
-
|
155
|
-
# @!attribute originator_address_line2
|
156
|
-
# The address of the wire originator, set by the sending bank.
|
157
|
-
#
|
158
|
-
# @return [String, nil]
|
159
|
-
required :originator_address_line2, String, nil?: true
|
160
|
-
|
161
|
-
# @!attribute originator_address_line3
|
162
|
-
# The address of the wire originator, set by the sending bank.
|
163
|
-
#
|
164
|
-
# @return [String, nil]
|
165
|
-
required :originator_address_line3, String, nil?: true
|
166
|
-
|
167
|
-
# @!attribute originator_name
|
168
|
-
# The originator of the wire, set by the sending bank.
|
169
|
-
#
|
170
|
-
# @return [String, nil]
|
171
|
-
required :originator_name, String, nil?: true
|
172
|
-
|
173
|
-
# @!attribute originator_routing_number
|
174
|
-
# The American Banking Association (ABA) routing number of the bank originating
|
175
|
-
# the transfer.
|
176
|
-
#
|
177
|
-
# @return [String, nil]
|
178
|
-
required :originator_routing_number, String, nil?: true
|
179
|
-
|
180
|
-
# @!attribute originator_to_beneficiary_information
|
181
|
-
# An Increase-created concatenation of the Originator-to-Beneficiary lines.
|
182
|
-
#
|
183
|
-
# @return [String, nil]
|
184
|
-
required :originator_to_beneficiary_information, String, nil?: true
|
185
|
-
|
186
|
-
# @!attribute originator_to_beneficiary_information_line1
|
187
|
-
# A free-form message set by the wire originator.
|
188
|
-
#
|
189
|
-
# @return [String, nil]
|
190
|
-
required :originator_to_beneficiary_information_line1, String, nil?: true
|
191
|
-
|
192
|
-
# @!attribute originator_to_beneficiary_information_line2
|
193
|
-
# A free-form message set by the wire originator.
|
194
|
-
#
|
195
|
-
# @return [String, nil]
|
196
|
-
required :originator_to_beneficiary_information_line2, String, nil?: true
|
197
|
-
|
198
|
-
# @!attribute originator_to_beneficiary_information_line3
|
199
|
-
# A free-form message set by the wire originator.
|
200
|
-
#
|
201
|
-
# @return [String, nil]
|
202
|
-
required :originator_to_beneficiary_information_line3, String, nil?: true
|
203
|
-
|
204
|
-
# @!attribute originator_to_beneficiary_information_line4
|
205
|
-
# A free-form message set by the wire originator.
|
206
|
-
#
|
207
|
-
# @return [String, nil]
|
208
|
-
required :originator_to_beneficiary_information_line4, String, nil?: true
|
209
|
-
|
210
119
|
# @!attribute reversal
|
211
120
|
# Information about the reversal of the inbound wire transfer if it has been
|
212
121
|
# reversed.
|
@@ -214,12 +123,6 @@ module Increase
|
|
214
123
|
# @return [Increase::Models::InboundWireTransfer::Reversal, nil]
|
215
124
|
required :reversal, -> { Increase::InboundWireTransfer::Reversal }, nil?: true
|
216
125
|
|
217
|
-
# @!attribute sender_reference
|
218
|
-
# The sending bank's reference number for the wire transfer.
|
219
|
-
#
|
220
|
-
# @return [String, nil]
|
221
|
-
required :sender_reference, String, nil?: true
|
222
|
-
|
223
126
|
# @!attribute status
|
224
127
|
# The status of the transfer.
|
225
128
|
#
|
@@ -253,7 +156,7 @@ module Increase
|
|
253
156
|
# @return [String, nil]
|
254
157
|
required :wire_drawdown_request_id, String, nil?: true
|
255
158
|
|
256
|
-
# @!method initialize(id:, account_id:, account_number_id:, amount:,
|
159
|
+
# @!method initialize(id:, account_id:, account_number_id:, amount:, 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:, reversal:, status:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:, wire_drawdown_request_id:)
|
257
160
|
# Some parameter documentations has been truncated, see
|
258
161
|
# {Increase::Models::InboundWireTransfer} for more details.
|
259
162
|
#
|
@@ -268,16 +171,6 @@ module Increase
|
|
268
171
|
#
|
269
172
|
# @param amount [Integer] The amount in USD cents.
|
270
173
|
#
|
271
|
-
# @param beneficiary_address_line1 [String, nil] A free-form address field set by the sender.
|
272
|
-
#
|
273
|
-
# @param beneficiary_address_line2 [String, nil] A free-form address field set by the sender.
|
274
|
-
#
|
275
|
-
# @param beneficiary_address_line3 [String, nil] A free-form address field set by the sender.
|
276
|
-
#
|
277
|
-
# @param beneficiary_name [String, nil] A name set by the sender.
|
278
|
-
#
|
279
|
-
# @param beneficiary_reference [String, nil] A free-form reference string set by the sender, to help identify the transfer.
|
280
|
-
#
|
281
174
|
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
282
175
|
#
|
283
176
|
# @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
|
@@ -306,30 +199,8 @@ module Increase
|
|
306
199
|
#
|
307
200
|
# @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
|
308
201
|
#
|
309
|
-
# @param originator_address_line1 [String, nil] The address of the wire originator, set by the sending bank.
|
310
|
-
#
|
311
|
-
# @param originator_address_line2 [String, nil] The address of the wire originator, set by the sending bank.
|
312
|
-
#
|
313
|
-
# @param originator_address_line3 [String, nil] The address of the wire originator, set by the sending bank.
|
314
|
-
#
|
315
|
-
# @param originator_name [String, nil] The originator of the wire, set by the sending bank.
|
316
|
-
#
|
317
|
-
# @param originator_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank originating th
|
318
|
-
#
|
319
|
-
# @param originator_to_beneficiary_information [String, nil] An Increase-created concatenation of the Originator-to-Beneficiary lines.
|
320
|
-
#
|
321
|
-
# @param originator_to_beneficiary_information_line1 [String, nil] A free-form message set by the wire originator.
|
322
|
-
#
|
323
|
-
# @param originator_to_beneficiary_information_line2 [String, nil] A free-form message set by the wire originator.
|
324
|
-
#
|
325
|
-
# @param originator_to_beneficiary_information_line3 [String, nil] A free-form message set by the wire originator.
|
326
|
-
#
|
327
|
-
# @param originator_to_beneficiary_information_line4 [String, nil] A free-form message set by the wire originator.
|
328
|
-
#
|
329
202
|
# @param reversal [Increase::Models::InboundWireTransfer::Reversal, nil] Information about the reversal of the inbound wire transfer if it has been rever
|
330
203
|
#
|
331
|
-
# @param sender_reference [String, nil] The sending bank's reference number for the wire transfer.
|
332
|
-
#
|
333
204
|
# @param status [Symbol, Increase::Models::InboundWireTransfer::Status] The status of the transfer.
|
334
205
|
#
|
335
206
|
# @param type [Symbol, Increase::Models::InboundWireTransfer::Type] A constant representing the object's type. For this resource it will always be `
|
data/lib/increase/version.rb
CHANGED
@@ -24,26 +24,6 @@ module Increase
|
|
24
24
|
sig { returns(Integer) }
|
25
25
|
attr_accessor :amount
|
26
26
|
|
27
|
-
# A free-form address field set by the sender.
|
28
|
-
sig { returns(T.nilable(String)) }
|
29
|
-
attr_accessor :beneficiary_address_line1
|
30
|
-
|
31
|
-
# A free-form address field set by the sender.
|
32
|
-
sig { returns(T.nilable(String)) }
|
33
|
-
attr_accessor :beneficiary_address_line2
|
34
|
-
|
35
|
-
# A free-form address field set by the sender.
|
36
|
-
sig { returns(T.nilable(String)) }
|
37
|
-
attr_accessor :beneficiary_address_line3
|
38
|
-
|
39
|
-
# A name set by the sender.
|
40
|
-
sig { returns(T.nilable(String)) }
|
41
|
-
attr_accessor :beneficiary_name
|
42
|
-
|
43
|
-
# A free-form reference string set by the sender, to help identify the transfer.
|
44
|
-
sig { returns(T.nilable(String)) }
|
45
|
-
attr_accessor :beneficiary_reference
|
46
|
-
|
47
27
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
48
28
|
# the inbound wire transfer was created.
|
49
29
|
sig { returns(Time) }
|
@@ -104,47 +84,6 @@ module Increase
|
|
104
84
|
sig { returns(T.nilable(String)) }
|
105
85
|
attr_accessor :instruction_identification
|
106
86
|
|
107
|
-
# The address of the wire originator, set by the sending bank.
|
108
|
-
sig { returns(T.nilable(String)) }
|
109
|
-
attr_accessor :originator_address_line1
|
110
|
-
|
111
|
-
# The address of the wire originator, set by the sending bank.
|
112
|
-
sig { returns(T.nilable(String)) }
|
113
|
-
attr_accessor :originator_address_line2
|
114
|
-
|
115
|
-
# The address of the wire originator, set by the sending bank.
|
116
|
-
sig { returns(T.nilable(String)) }
|
117
|
-
attr_accessor :originator_address_line3
|
118
|
-
|
119
|
-
# The originator of the wire, set by the sending bank.
|
120
|
-
sig { returns(T.nilable(String)) }
|
121
|
-
attr_accessor :originator_name
|
122
|
-
|
123
|
-
# The American Banking Association (ABA) routing number of the bank originating
|
124
|
-
# the transfer.
|
125
|
-
sig { returns(T.nilable(String)) }
|
126
|
-
attr_accessor :originator_routing_number
|
127
|
-
|
128
|
-
# An Increase-created concatenation of the Originator-to-Beneficiary lines.
|
129
|
-
sig { returns(T.nilable(String)) }
|
130
|
-
attr_accessor :originator_to_beneficiary_information
|
131
|
-
|
132
|
-
# A free-form message set by the wire originator.
|
133
|
-
sig { returns(T.nilable(String)) }
|
134
|
-
attr_accessor :originator_to_beneficiary_information_line1
|
135
|
-
|
136
|
-
# A free-form message set by the wire originator.
|
137
|
-
sig { returns(T.nilable(String)) }
|
138
|
-
attr_accessor :originator_to_beneficiary_information_line2
|
139
|
-
|
140
|
-
# A free-form message set by the wire originator.
|
141
|
-
sig { returns(T.nilable(String)) }
|
142
|
-
attr_accessor :originator_to_beneficiary_information_line3
|
143
|
-
|
144
|
-
# A free-form message set by the wire originator.
|
145
|
-
sig { returns(T.nilable(String)) }
|
146
|
-
attr_accessor :originator_to_beneficiary_information_line4
|
147
|
-
|
148
87
|
# Information about the reversal of the inbound wire transfer if it has been
|
149
88
|
# reversed.
|
150
89
|
sig { returns(T.nilable(Increase::InboundWireTransfer::Reversal)) }
|
@@ -157,10 +96,6 @@ module Increase
|
|
157
96
|
end
|
158
97
|
attr_writer :reversal
|
159
98
|
|
160
|
-
# The sending bank's reference number for the wire transfer.
|
161
|
-
sig { returns(T.nilable(String)) }
|
162
|
-
attr_accessor :sender_reference
|
163
|
-
|
164
99
|
# The status of the transfer.
|
165
100
|
sig { returns(Increase::InboundWireTransfer::Status::TaggedSymbol) }
|
166
101
|
attr_accessor :status
|
@@ -192,11 +127,6 @@ module Increase
|
|
192
127
|
account_id: String,
|
193
128
|
account_number_id: String,
|
194
129
|
amount: Integer,
|
195
|
-
beneficiary_address_line1: T.nilable(String),
|
196
|
-
beneficiary_address_line2: T.nilable(String),
|
197
|
-
beneficiary_address_line3: T.nilable(String),
|
198
|
-
beneficiary_name: T.nilable(String),
|
199
|
-
beneficiary_reference: T.nilable(String),
|
200
130
|
created_at: Time,
|
201
131
|
creditor_address_line1: T.nilable(String),
|
202
132
|
creditor_address_line2: T.nilable(String),
|
@@ -211,18 +141,7 @@ module Increase
|
|
211
141
|
input_message_accountability_data: T.nilable(String),
|
212
142
|
instructing_agent_routing_number: T.nilable(String),
|
213
143
|
instruction_identification: T.nilable(String),
|
214
|
-
originator_address_line1: T.nilable(String),
|
215
|
-
originator_address_line2: T.nilable(String),
|
216
|
-
originator_address_line3: T.nilable(String),
|
217
|
-
originator_name: T.nilable(String),
|
218
|
-
originator_routing_number: T.nilable(String),
|
219
|
-
originator_to_beneficiary_information: T.nilable(String),
|
220
|
-
originator_to_beneficiary_information_line1: T.nilable(String),
|
221
|
-
originator_to_beneficiary_information_line2: T.nilable(String),
|
222
|
-
originator_to_beneficiary_information_line3: T.nilable(String),
|
223
|
-
originator_to_beneficiary_information_line4: T.nilable(String),
|
224
144
|
reversal: T.nilable(Increase::InboundWireTransfer::Reversal::OrHash),
|
225
|
-
sender_reference: T.nilable(String),
|
226
145
|
status: Increase::InboundWireTransfer::Status::OrSymbol,
|
227
146
|
type: Increase::InboundWireTransfer::Type::OrSymbol,
|
228
147
|
unique_end_to_end_transaction_reference: T.nilable(String),
|
@@ -239,16 +158,6 @@ module Increase
|
|
239
158
|
account_number_id:,
|
240
159
|
# The amount in USD cents.
|
241
160
|
amount:,
|
242
|
-
# A free-form address field set by the sender.
|
243
|
-
beneficiary_address_line1:,
|
244
|
-
# A free-form address field set by the sender.
|
245
|
-
beneficiary_address_line2:,
|
246
|
-
# A free-form address field set by the sender.
|
247
|
-
beneficiary_address_line3:,
|
248
|
-
# A name set by the sender.
|
249
|
-
beneficiary_name:,
|
250
|
-
# A free-form reference string set by the sender, to help identify the transfer.
|
251
|
-
beneficiary_reference:,
|
252
161
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
253
162
|
# the inbound wire transfer was created.
|
254
163
|
created_at:,
|
@@ -281,32 +190,9 @@ module Increase
|
|
281
190
|
instructing_agent_routing_number:,
|
282
191
|
# The sending bank's identifier for the wire transfer.
|
283
192
|
instruction_identification:,
|
284
|
-
# The address of the wire originator, set by the sending bank.
|
285
|
-
originator_address_line1:,
|
286
|
-
# The address of the wire originator, set by the sending bank.
|
287
|
-
originator_address_line2:,
|
288
|
-
# The address of the wire originator, set by the sending bank.
|
289
|
-
originator_address_line3:,
|
290
|
-
# The originator of the wire, set by the sending bank.
|
291
|
-
originator_name:,
|
292
|
-
# The American Banking Association (ABA) routing number of the bank originating
|
293
|
-
# the transfer.
|
294
|
-
originator_routing_number:,
|
295
|
-
# An Increase-created concatenation of the Originator-to-Beneficiary lines.
|
296
|
-
originator_to_beneficiary_information:,
|
297
|
-
# A free-form message set by the wire originator.
|
298
|
-
originator_to_beneficiary_information_line1:,
|
299
|
-
# A free-form message set by the wire originator.
|
300
|
-
originator_to_beneficiary_information_line2:,
|
301
|
-
# A free-form message set by the wire originator.
|
302
|
-
originator_to_beneficiary_information_line3:,
|
303
|
-
# A free-form message set by the wire originator.
|
304
|
-
originator_to_beneficiary_information_line4:,
|
305
193
|
# Information about the reversal of the inbound wire transfer if it has been
|
306
194
|
# reversed.
|
307
195
|
reversal:,
|
308
|
-
# The sending bank's reference number for the wire transfer.
|
309
|
-
sender_reference:,
|
310
196
|
# The status of the transfer.
|
311
197
|
status:,
|
312
198
|
# A constant representing the object's type. For this resource it will always be
|
@@ -330,11 +216,6 @@ module Increase
|
|
330
216
|
account_id: String,
|
331
217
|
account_number_id: String,
|
332
218
|
amount: Integer,
|
333
|
-
beneficiary_address_line1: T.nilable(String),
|
334
|
-
beneficiary_address_line2: T.nilable(String),
|
335
|
-
beneficiary_address_line3: T.nilable(String),
|
336
|
-
beneficiary_name: T.nilable(String),
|
337
|
-
beneficiary_reference: T.nilable(String),
|
338
219
|
created_at: Time,
|
339
220
|
creditor_address_line1: T.nilable(String),
|
340
221
|
creditor_address_line2: T.nilable(String),
|
@@ -349,18 +230,7 @@ module Increase
|
|
349
230
|
input_message_accountability_data: T.nilable(String),
|
350
231
|
instructing_agent_routing_number: T.nilable(String),
|
351
232
|
instruction_identification: T.nilable(String),
|
352
|
-
originator_address_line1: T.nilable(String),
|
353
|
-
originator_address_line2: T.nilable(String),
|
354
|
-
originator_address_line3: T.nilable(String),
|
355
|
-
originator_name: T.nilable(String),
|
356
|
-
originator_routing_number: T.nilable(String),
|
357
|
-
originator_to_beneficiary_information: T.nilable(String),
|
358
|
-
originator_to_beneficiary_information_line1: T.nilable(String),
|
359
|
-
originator_to_beneficiary_information_line2: T.nilable(String),
|
360
|
-
originator_to_beneficiary_information_line3: T.nilable(String),
|
361
|
-
originator_to_beneficiary_information_line4: T.nilable(String),
|
362
233
|
reversal: T.nilable(Increase::InboundWireTransfer::Reversal),
|
363
|
-
sender_reference: T.nilable(String),
|
364
234
|
status: Increase::InboundWireTransfer::Status::TaggedSymbol,
|
365
235
|
type: Increase::InboundWireTransfer::Type::TaggedSymbol,
|
366
236
|
unique_end_to_end_transaction_reference: T.nilable(String),
|
@@ -6,11 +6,6 @@ module Increase
|
|
6
6
|
account_id: String,
|
7
7
|
account_number_id: String,
|
8
8
|
amount: Integer,
|
9
|
-
:beneficiary_address_line1 => String?,
|
10
|
-
:beneficiary_address_line2 => String?,
|
11
|
-
:beneficiary_address_line3 => String?,
|
12
|
-
beneficiary_name: String?,
|
13
|
-
beneficiary_reference: String?,
|
14
9
|
created_at: Time,
|
15
10
|
:creditor_address_line1 => String?,
|
16
11
|
:creditor_address_line2 => String?,
|
@@ -25,18 +20,7 @@ module Increase
|
|
25
20
|
input_message_accountability_data: String?,
|
26
21
|
instructing_agent_routing_number: String?,
|
27
22
|
instruction_identification: String?,
|
28
|
-
:originator_address_line1 => String?,
|
29
|
-
:originator_address_line2 => String?,
|
30
|
-
:originator_address_line3 => String?,
|
31
|
-
originator_name: String?,
|
32
|
-
originator_routing_number: String?,
|
33
|
-
originator_to_beneficiary_information: String?,
|
34
|
-
:originator_to_beneficiary_information_line1 => String?,
|
35
|
-
:originator_to_beneficiary_information_line2 => String?,
|
36
|
-
:originator_to_beneficiary_information_line3 => String?,
|
37
|
-
:originator_to_beneficiary_information_line4 => String?,
|
38
23
|
reversal: Increase::InboundWireTransfer::Reversal?,
|
39
|
-
sender_reference: String?,
|
40
24
|
status: Increase::Models::InboundWireTransfer::status,
|
41
25
|
type: Increase::Models::InboundWireTransfer::type_,
|
42
26
|
unique_end_to_end_transaction_reference: String?,
|
@@ -53,16 +37,6 @@ module Increase
|
|
53
37
|
|
54
38
|
attr_accessor amount: Integer
|
55
39
|
|
56
|
-
attr_accessor beneficiary_address_line1: String?
|
57
|
-
|
58
|
-
attr_accessor beneficiary_address_line2: String?
|
59
|
-
|
60
|
-
attr_accessor beneficiary_address_line3: String?
|
61
|
-
|
62
|
-
attr_accessor beneficiary_name: String?
|
63
|
-
|
64
|
-
attr_accessor beneficiary_reference: String?
|
65
|
-
|
66
40
|
attr_accessor created_at: Time
|
67
41
|
|
68
42
|
attr_accessor creditor_address_line1: String?
|
@@ -91,30 +65,8 @@ module Increase
|
|
91
65
|
|
92
66
|
attr_accessor instruction_identification: String?
|
93
67
|
|
94
|
-
attr_accessor originator_address_line1: String?
|
95
|
-
|
96
|
-
attr_accessor originator_address_line2: String?
|
97
|
-
|
98
|
-
attr_accessor originator_address_line3: String?
|
99
|
-
|
100
|
-
attr_accessor originator_name: String?
|
101
|
-
|
102
|
-
attr_accessor originator_routing_number: String?
|
103
|
-
|
104
|
-
attr_accessor originator_to_beneficiary_information: String?
|
105
|
-
|
106
|
-
attr_accessor originator_to_beneficiary_information_line1: String?
|
107
|
-
|
108
|
-
attr_accessor originator_to_beneficiary_information_line2: String?
|
109
|
-
|
110
|
-
attr_accessor originator_to_beneficiary_information_line3: String?
|
111
|
-
|
112
|
-
attr_accessor originator_to_beneficiary_information_line4: String?
|
113
|
-
|
114
68
|
attr_accessor reversal: Increase::InboundWireTransfer::Reversal?
|
115
69
|
|
116
|
-
attr_accessor sender_reference: String?
|
117
|
-
|
118
70
|
attr_accessor status: Increase::Models::InboundWireTransfer::status
|
119
71
|
|
120
72
|
attr_accessor type: Increase::Models::InboundWireTransfer::type_
|
@@ -130,11 +82,6 @@ module Increase
|
|
130
82
|
account_id: String,
|
131
83
|
account_number_id: String,
|
132
84
|
amount: Integer,
|
133
|
-
beneficiary_address_line1: String?,
|
134
|
-
beneficiary_address_line2: String?,
|
135
|
-
beneficiary_address_line3: String?,
|
136
|
-
beneficiary_name: String?,
|
137
|
-
beneficiary_reference: String?,
|
138
85
|
created_at: Time,
|
139
86
|
creditor_address_line1: String?,
|
140
87
|
creditor_address_line2: String?,
|
@@ -149,18 +96,7 @@ module Increase
|
|
149
96
|
input_message_accountability_data: String?,
|
150
97
|
instructing_agent_routing_number: String?,
|
151
98
|
instruction_identification: String?,
|
152
|
-
originator_address_line1: String?,
|
153
|
-
originator_address_line2: String?,
|
154
|
-
originator_address_line3: String?,
|
155
|
-
originator_name: String?,
|
156
|
-
originator_routing_number: String?,
|
157
|
-
originator_to_beneficiary_information: String?,
|
158
|
-
originator_to_beneficiary_information_line1: String?,
|
159
|
-
originator_to_beneficiary_information_line2: String?,
|
160
|
-
originator_to_beneficiary_information_line3: String?,
|
161
|
-
originator_to_beneficiary_information_line4: String?,
|
162
99
|
reversal: Increase::InboundWireTransfer::Reversal?,
|
163
|
-
sender_reference: String?,
|
164
100
|
status: Increase::Models::InboundWireTransfer::status,
|
165
101
|
type: Increase::Models::InboundWireTransfer::type_,
|
166
102
|
unique_end_to_end_transaction_reference: String?,
|
@@ -173,11 +109,6 @@ module Increase
|
|
173
109
|
account_id: String,
|
174
110
|
account_number_id: String,
|
175
111
|
amount: Integer,
|
176
|
-
:beneficiary_address_line1 => String?,
|
177
|
-
:beneficiary_address_line2 => String?,
|
178
|
-
:beneficiary_address_line3 => String?,
|
179
|
-
beneficiary_name: String?,
|
180
|
-
beneficiary_reference: String?,
|
181
112
|
created_at: Time,
|
182
113
|
:creditor_address_line1 => String?,
|
183
114
|
:creditor_address_line2 => String?,
|
@@ -192,18 +123,7 @@ module Increase
|
|
192
123
|
input_message_accountability_data: String?,
|
193
124
|
instructing_agent_routing_number: String?,
|
194
125
|
instruction_identification: String?,
|
195
|
-
:originator_address_line1 => String?,
|
196
|
-
:originator_address_line2 => String?,
|
197
|
-
:originator_address_line3 => String?,
|
198
|
-
originator_name: String?,
|
199
|
-
originator_routing_number: String?,
|
200
|
-
originator_to_beneficiary_information: String?,
|
201
|
-
:originator_to_beneficiary_information_line1 => String?,
|
202
|
-
:originator_to_beneficiary_information_line2 => String?,
|
203
|
-
:originator_to_beneficiary_information_line3 => String?,
|
204
|
-
:originator_to_beneficiary_information_line4 => String?,
|
205
126
|
reversal: Increase::InboundWireTransfer::Reversal?,
|
206
|
-
sender_reference: String?,
|
207
127
|
status: Increase::Models::InboundWireTransfer::status,
|
208
128
|
type: Increase::Models::InboundWireTransfer::type_,
|
209
129
|
unique_end_to_end_transaction_reference: String?,
|
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.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|