increase 1.43.0 → 1.45.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/simulations/inbound_wire_transfer_create_params.rb +63 -81
- data/lib/increase/models/transaction.rb +68 -82
- data/lib/increase/resources/simulations/inbound_wire_transfers.rb +14 -18
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/simulations/inbound_wire_transfer_create_params.rbi +123 -149
- data/rbi/increase/models/transaction.rbi +89 -101
- data/rbi/increase/resources/simulations/inbound_wire_transfers.rbi +48 -56
- data/sig/increase/models/simulations/inbound_wire_transfer_create_params.rbs +65 -79
- data/sig/increase/models/transaction.rbs +58 -68
- data/sig/increase/resources/simulations/inbound_wire_transfers.rbs +13 -15
- 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: 431395a873284959b6ee1cec56827151e085e2b449210cbcd723f1ebbf66f179
|
4
|
+
data.tar.gz: fcd70add2911e34f155c3ae03650b5319a30c8e46c3d0735a4c81fa7acd838e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cdd9893bc8e7146d3bca680e7f2dd32a67f67049ecb936026886d8aacb722a9ec502e7b6e95bafa72a08a446e5d8f44107d7a774a985e5bce03032d665893027
|
7
|
+
data.tar.gz: 80dc84c9f1e51ecb046e1e578be197c2c29db3c161a74ca91e78fe01a7823c9df4ccfd56b94366d9458a7ff4c780cbcc6186840e67e2c952a5da63bbf9a73661
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.45.0 (2025-08-21)
|
4
|
+
|
5
|
+
Full Changelog: [v1.44.0...v1.45.0](https://github.com/Increase/increase-ruby/compare/v1.44.0...v1.45.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([080fb56](https://github.com/Increase/increase-ruby/commit/080fb56c431f8d633420675e0a22759401d22b85))
|
10
|
+
|
11
|
+
## 1.44.0 (2025-08-21)
|
12
|
+
|
13
|
+
Full Changelog: [v1.43.0...v1.44.0](https://github.com/Increase/increase-ruby/compare/v1.43.0...v1.44.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([fa432d1](https://github.com/Increase/increase-ruby/commit/fa432d119fbd419cfe50893ed6e2609ebef760cb))
|
18
|
+
|
3
19
|
## 1.43.0 (2025-08-20)
|
4
20
|
|
5
21
|
Full Changelog: [v1.42.0...v1.43.0](https://github.com/Increase/increase-ruby/compare/v1.42.0...v1.43.0)
|
data/README.md
CHANGED
@@ -20,110 +20,96 @@ module Increase
|
|
20
20
|
# @return [Integer]
|
21
21
|
required :amount, Integer
|
22
22
|
|
23
|
-
# @!attribute
|
24
|
-
# The sending bank will set
|
25
|
-
#
|
23
|
+
# @!attribute creditor_address_line1
|
24
|
+
# The sending bank will set creditor_address_line1 in production. You can simulate
|
25
|
+
# any value here.
|
26
26
|
#
|
27
27
|
# @return [String, nil]
|
28
|
-
optional :
|
28
|
+
optional :creditor_address_line1, String
|
29
29
|
|
30
|
-
# @!attribute
|
31
|
-
# The sending bank will set
|
32
|
-
#
|
30
|
+
# @!attribute creditor_address_line2
|
31
|
+
# The sending bank will set creditor_address_line2 in production. You can simulate
|
32
|
+
# any value here.
|
33
33
|
#
|
34
34
|
# @return [String, nil]
|
35
|
-
optional :
|
35
|
+
optional :creditor_address_line2, String
|
36
36
|
|
37
|
-
# @!attribute
|
38
|
-
# The sending bank will set
|
39
|
-
#
|
37
|
+
# @!attribute creditor_address_line3
|
38
|
+
# The sending bank will set creditor_address_line3 in production. You can simulate
|
39
|
+
# any value here.
|
40
40
|
#
|
41
41
|
# @return [String, nil]
|
42
|
-
optional :
|
42
|
+
optional :creditor_address_line3, String
|
43
43
|
|
44
|
-
# @!attribute
|
45
|
-
# The sending bank will set
|
44
|
+
# @!attribute creditor_name
|
45
|
+
# The sending bank will set creditor_name in production. You can simulate any
|
46
46
|
# value here.
|
47
47
|
#
|
48
48
|
# @return [String, nil]
|
49
|
-
optional :
|
49
|
+
optional :creditor_name, String
|
50
50
|
|
51
|
-
# @!attribute
|
52
|
-
# The sending bank will set
|
51
|
+
# @!attribute debtor_address_line1
|
52
|
+
# The sending bank will set debtor_address_line1 in production. You can simulate
|
53
53
|
# any value here.
|
54
54
|
#
|
55
55
|
# @return [String, nil]
|
56
|
-
optional :
|
56
|
+
optional :debtor_address_line1, String
|
57
57
|
|
58
|
-
# @!attribute
|
59
|
-
# The sending bank will set
|
60
|
-
#
|
61
|
-
#
|
62
|
-
# @return [String, nil]
|
63
|
-
optional :originator_address_line1, String
|
64
|
-
|
65
|
-
# @!attribute originator_address_line2
|
66
|
-
# The sending bank will set originator_address_line2 in production. You can
|
67
|
-
# simulate any value here.
|
58
|
+
# @!attribute debtor_address_line2
|
59
|
+
# The sending bank will set debtor_address_line2 in production. You can simulate
|
60
|
+
# any value here.
|
68
61
|
#
|
69
62
|
# @return [String, nil]
|
70
|
-
optional :
|
63
|
+
optional :debtor_address_line2, String
|
71
64
|
|
72
|
-
# @!attribute
|
73
|
-
# The sending bank will set
|
74
|
-
#
|
65
|
+
# @!attribute debtor_address_line3
|
66
|
+
# The sending bank will set debtor_address_line3 in production. You can simulate
|
67
|
+
# any value here.
|
75
68
|
#
|
76
69
|
# @return [String, nil]
|
77
|
-
optional :
|
70
|
+
optional :debtor_address_line3, String
|
78
71
|
|
79
|
-
# @!attribute
|
80
|
-
# The sending bank will set
|
81
|
-
#
|
72
|
+
# @!attribute debtor_name
|
73
|
+
# The sending bank will set debtor_name in production. You can simulate any value
|
74
|
+
# here.
|
82
75
|
#
|
83
76
|
# @return [String, nil]
|
84
|
-
optional :
|
77
|
+
optional :debtor_name, String
|
85
78
|
|
86
|
-
# @!attribute
|
87
|
-
# The sending bank will set
|
79
|
+
# @!attribute end_to_end_identification
|
80
|
+
# The sending bank will set end_to_end_identification in production. You can
|
88
81
|
# simulate any value here.
|
89
82
|
#
|
90
83
|
# @return [String, nil]
|
91
|
-
optional :
|
84
|
+
optional :end_to_end_identification, String
|
92
85
|
|
93
|
-
# @!attribute
|
94
|
-
# The sending bank will set
|
95
|
-
#
|
86
|
+
# @!attribute instructing_agent_routing_number
|
87
|
+
# The sending bank will set instructing_agent_routing_number in production. You
|
88
|
+
# can simulate any value here.
|
96
89
|
#
|
97
90
|
# @return [String, nil]
|
98
|
-
optional :
|
91
|
+
optional :instructing_agent_routing_number, String
|
99
92
|
|
100
|
-
# @!attribute
|
101
|
-
# The sending bank will set
|
102
|
-
#
|
103
|
-
#
|
104
|
-
# @return [String, nil]
|
105
|
-
optional :originator_to_beneficiary_information_line2, String
|
106
|
-
|
107
|
-
# @!attribute originator_to_beneficiary_information_line3
|
108
|
-
# The sending bank will set originator_to_beneficiary_information_line3 in
|
109
|
-
# production. You can simulate any value here.
|
93
|
+
# @!attribute instruction_identification
|
94
|
+
# The sending bank will set instruction_identification in production. You can
|
95
|
+
# simulate any value here.
|
110
96
|
#
|
111
97
|
# @return [String, nil]
|
112
|
-
optional :
|
98
|
+
optional :instruction_identification, String
|
113
99
|
|
114
|
-
# @!attribute
|
115
|
-
# The sending bank will set
|
116
|
-
#
|
100
|
+
# @!attribute unique_end_to_end_transaction_reference
|
101
|
+
# The sending bank will set unique_end_to_end_transaction_reference in production.
|
102
|
+
# You can simulate any value here.
|
117
103
|
#
|
118
104
|
# @return [String, nil]
|
119
|
-
optional :
|
105
|
+
optional :unique_end_to_end_transaction_reference, String
|
120
106
|
|
121
|
-
# @!attribute
|
122
|
-
# The sending bank will set
|
123
|
-
# value here.
|
107
|
+
# @!attribute unstructured_remittance_information
|
108
|
+
# The sending bank will set unstructured_remittance_information in production. You
|
109
|
+
# can simulate any value here.
|
124
110
|
#
|
125
111
|
# @return [String, nil]
|
126
|
-
optional :
|
112
|
+
optional :unstructured_remittance_information, String
|
127
113
|
|
128
114
|
# @!attribute wire_drawdown_request_id
|
129
115
|
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
@@ -132,7 +118,7 @@ module Increase
|
|
132
118
|
# @return [String, nil]
|
133
119
|
optional :wire_drawdown_request_id, String
|
134
120
|
|
135
|
-
# @!method initialize(account_number_id:, amount:,
|
121
|
+
# @!method initialize(account_number_id:, amount:, creditor_address_line1: nil, creditor_address_line2: nil, creditor_address_line3: nil, creditor_name: nil, debtor_address_line1: nil, debtor_address_line2: nil, debtor_address_line3: nil, debtor_name: nil, end_to_end_identification: nil, instructing_agent_routing_number: nil, instruction_identification: nil, unique_end_to_end_transaction_reference: nil, unstructured_remittance_information: nil, wire_drawdown_request_id: nil, request_options: {})
|
136
122
|
# Some parameter documentations has been truncated, see
|
137
123
|
# {Increase::Models::Simulations::InboundWireTransferCreateParams} for more
|
138
124
|
# details.
|
@@ -141,35 +127,31 @@ module Increase
|
|
141
127
|
#
|
142
128
|
# @param amount [Integer] The transfer amount in cents. Must be positive.
|
143
129
|
#
|
144
|
-
# @param
|
145
|
-
#
|
146
|
-
# @param beneficiary_address_line2 [String] The sending bank will set beneficiary_address_line2 in production. You can simul
|
147
|
-
#
|
148
|
-
# @param beneficiary_address_line3 [String] The sending bank will set beneficiary_address_line3 in production. You can simul
|
130
|
+
# @param creditor_address_line1 [String] The sending bank will set creditor_address_line1 in production. You can simulate
|
149
131
|
#
|
150
|
-
# @param
|
132
|
+
# @param creditor_address_line2 [String] The sending bank will set creditor_address_line2 in production. You can simulate
|
151
133
|
#
|
152
|
-
# @param
|
134
|
+
# @param creditor_address_line3 [String] The sending bank will set creditor_address_line3 in production. You can simulate
|
153
135
|
#
|
154
|
-
# @param
|
136
|
+
# @param creditor_name [String] The sending bank will set creditor_name in production. You can simulate any valu
|
155
137
|
#
|
156
|
-
# @param
|
138
|
+
# @param debtor_address_line1 [String] The sending bank will set debtor_address_line1 in production. You can simulate a
|
157
139
|
#
|
158
|
-
# @param
|
140
|
+
# @param debtor_address_line2 [String] The sending bank will set debtor_address_line2 in production. You can simulate a
|
159
141
|
#
|
160
|
-
# @param
|
142
|
+
# @param debtor_address_line3 [String] The sending bank will set debtor_address_line3 in production. You can simulate a
|
161
143
|
#
|
162
|
-
# @param
|
144
|
+
# @param debtor_name [String] The sending bank will set debtor_name in production. You can simulate any value
|
163
145
|
#
|
164
|
-
# @param
|
146
|
+
# @param end_to_end_identification [String] The sending bank will set end_to_end_identification in production. You can simul
|
165
147
|
#
|
166
|
-
# @param
|
148
|
+
# @param instructing_agent_routing_number [String] The sending bank will set instructing_agent_routing_number in production. You ca
|
167
149
|
#
|
168
|
-
# @param
|
150
|
+
# @param instruction_identification [String] The sending bank will set instruction_identification in production. You can simu
|
169
151
|
#
|
170
|
-
# @param
|
152
|
+
# @param unique_end_to_end_transaction_reference [String] The sending bank will set unique_end_to_end_transaction_reference in production.
|
171
153
|
#
|
172
|
-
# @param
|
154
|
+
# @param unstructured_remittance_information [String] The sending bank will set unstructured_remittance_information in production. You
|
173
155
|
#
|
174
156
|
# @param wire_drawdown_request_id [String] The identifier of a Wire Drawdown Request the inbound Wire Transfer is fulfillin
|
175
157
|
#
|
@@ -5421,118 +5421,108 @@ module Increase
|
|
5421
5421
|
# @return [Integer]
|
5422
5422
|
required :amount, Integer
|
5423
5423
|
|
5424
|
-
# @!attribute
|
5424
|
+
# @!attribute creditor_address_line1
|
5425
5425
|
# A free-form address field set by the sender.
|
5426
5426
|
#
|
5427
5427
|
# @return [String, nil]
|
5428
|
-
required :
|
5428
|
+
required :creditor_address_line1, String, nil?: true
|
5429
5429
|
|
5430
|
-
# @!attribute
|
5430
|
+
# @!attribute creditor_address_line2
|
5431
5431
|
# A free-form address field set by the sender.
|
5432
5432
|
#
|
5433
5433
|
# @return [String, nil]
|
5434
|
-
required :
|
5434
|
+
required :creditor_address_line2, String, nil?: true
|
5435
5435
|
|
5436
|
-
# @!attribute
|
5436
|
+
# @!attribute creditor_address_line3
|
5437
5437
|
# A free-form address field set by the sender.
|
5438
5438
|
#
|
5439
5439
|
# @return [String, nil]
|
5440
|
-
required :
|
5440
|
+
required :creditor_address_line3, String, nil?: true
|
5441
5441
|
|
5442
|
-
# @!attribute
|
5442
|
+
# @!attribute creditor_name
|
5443
5443
|
# A name set by the sender.
|
5444
5444
|
#
|
5445
5445
|
# @return [String, nil]
|
5446
|
-
required :
|
5446
|
+
required :creditor_name, String, nil?: true
|
5447
5447
|
|
5448
|
-
# @!attribute
|
5449
|
-
# A free-form
|
5448
|
+
# @!attribute debtor_address_line1
|
5449
|
+
# A free-form address field set by the sender.
|
5450
5450
|
#
|
5451
5451
|
# @return [String, nil]
|
5452
|
-
required :
|
5453
|
-
|
5454
|
-
# @!attribute description
|
5455
|
-
# An Increase-constructed description of the transfer.
|
5456
|
-
#
|
5457
|
-
# @return [String]
|
5458
|
-
required :description, String
|
5452
|
+
required :debtor_address_line1, String, nil?: true
|
5459
5453
|
|
5460
|
-
# @!attribute
|
5461
|
-
# A
|
5462
|
-
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
5463
|
-
# service and is helpful when debugging wires with the originating bank.
|
5454
|
+
# @!attribute debtor_address_line2
|
5455
|
+
# A free-form address field set by the sender.
|
5464
5456
|
#
|
5465
5457
|
# @return [String, nil]
|
5466
|
-
required :
|
5458
|
+
required :debtor_address_line2, String, nil?: true
|
5467
5459
|
|
5468
|
-
# @!attribute
|
5469
|
-
#
|
5460
|
+
# @!attribute debtor_address_line3
|
5461
|
+
# A free-form address field set by the sender.
|
5470
5462
|
#
|
5471
5463
|
# @return [String, nil]
|
5472
|
-
required :
|
5464
|
+
required :debtor_address_line3, String, nil?: true
|
5473
5465
|
|
5474
|
-
# @!attribute
|
5475
|
-
#
|
5466
|
+
# @!attribute debtor_name
|
5467
|
+
# A name set by the sender.
|
5476
5468
|
#
|
5477
5469
|
# @return [String, nil]
|
5478
|
-
required :
|
5470
|
+
required :debtor_name, String, nil?: true
|
5479
5471
|
|
5480
|
-
# @!attribute
|
5481
|
-
#
|
5472
|
+
# @!attribute description
|
5473
|
+
# An Increase-constructed description of the transfer.
|
5482
5474
|
#
|
5483
|
-
# @return [String
|
5484
|
-
required :
|
5475
|
+
# @return [String]
|
5476
|
+
required :description, String
|
5485
5477
|
|
5486
|
-
# @!attribute
|
5487
|
-
#
|
5478
|
+
# @!attribute end_to_end_identification
|
5479
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
5488
5480
|
#
|
5489
5481
|
# @return [String, nil]
|
5490
|
-
required :
|
5482
|
+
required :end_to_end_identification, String, nil?: true
|
5491
5483
|
|
5492
|
-
# @!attribute
|
5493
|
-
#
|
5494
|
-
# the
|
5484
|
+
# @!attribute input_message_accountability_data
|
5485
|
+
# A unique identifier available to the originating and receiving banks, commonly
|
5486
|
+
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
5487
|
+
# service and is helpful when debugging wires with the originating bank.
|
5495
5488
|
#
|
5496
5489
|
# @return [String, nil]
|
5497
|
-
required :
|
5490
|
+
required :input_message_accountability_data, String, nil?: true
|
5498
5491
|
|
5499
|
-
# @!attribute
|
5500
|
-
#
|
5492
|
+
# @!attribute instructing_agent_routing_number
|
5493
|
+
# The American Banking Association (ABA) routing number of the bank that sent the
|
5494
|
+
# wire.
|
5501
5495
|
#
|
5502
5496
|
# @return [String, nil]
|
5503
|
-
required :
|
5497
|
+
required :instructing_agent_routing_number, String, nil?: true
|
5504
5498
|
|
5505
|
-
# @!attribute
|
5506
|
-
#
|
5499
|
+
# @!attribute instruction_identification
|
5500
|
+
# The sending bank's identifier for the wire transfer.
|
5507
5501
|
#
|
5508
5502
|
# @return [String, nil]
|
5509
|
-
required :
|
5503
|
+
required :instruction_identification, String, nil?: true
|
5510
5504
|
|
5511
|
-
# @!attribute
|
5512
|
-
#
|
5505
|
+
# @!attribute transfer_id
|
5506
|
+
# The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
5513
5507
|
#
|
5514
|
-
# @return [String
|
5515
|
-
required :
|
5508
|
+
# @return [String]
|
5509
|
+
required :transfer_id, String
|
5516
5510
|
|
5517
|
-
# @!attribute
|
5518
|
-
#
|
5511
|
+
# @!attribute unique_end_to_end_transaction_reference
|
5512
|
+
# The Unique End-to-end Transaction Reference
|
5513
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
5514
|
+
# of the transfer.
|
5519
5515
|
#
|
5520
5516
|
# @return [String, nil]
|
5521
|
-
required :
|
5517
|
+
required :unique_end_to_end_transaction_reference, String, nil?: true
|
5522
5518
|
|
5523
|
-
# @!attribute
|
5524
|
-
# A free-form message set by the
|
5519
|
+
# @!attribute unstructured_remittance_information
|
5520
|
+
# A free-form message set by the sender.
|
5525
5521
|
#
|
5526
5522
|
# @return [String, nil]
|
5527
|
-
required :
|
5523
|
+
required :unstructured_remittance_information, String, nil?: true
|
5528
5524
|
|
5529
|
-
# @!
|
5530
|
-
# The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
5531
|
-
#
|
5532
|
-
# @return [String]
|
5533
|
-
required :transfer_id, String
|
5534
|
-
|
5535
|
-
# @!method initialize(amount:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_reference:, 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:, transfer_id:)
|
5525
|
+
# @!method initialize(amount:, 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:, transfer_id:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:)
|
5536
5526
|
# Some parameter documentations has been truncated, see
|
5537
5527
|
# {Increase::Models::Transaction::Source::InboundWireTransfer} for more details.
|
5538
5528
|
#
|
@@ -5543,41 +5533,37 @@ module Increase
|
|
5543
5533
|
#
|
5544
5534
|
# @param amount [Integer] The amount in USD cents.
|
5545
5535
|
#
|
5546
|
-
# @param
|
5536
|
+
# @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
|
5547
5537
|
#
|
5548
|
-
# @param
|
5538
|
+
# @param creditor_address_line2 [String, nil] A free-form address field set by the sender.
|
5549
5539
|
#
|
5550
|
-
# @param
|
5540
|
+
# @param creditor_address_line3 [String, nil] A free-form address field set by the sender.
|
5551
5541
|
#
|
5552
|
-
# @param
|
5542
|
+
# @param creditor_name [String, nil] A name set by the sender.
|
5553
5543
|
#
|
5554
|
-
# @param
|
5544
|
+
# @param debtor_address_line1 [String, nil] A free-form address field set by the sender.
|
5555
5545
|
#
|
5556
|
-
# @param
|
5557
|
-
#
|
5558
|
-
# @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
|
5546
|
+
# @param debtor_address_line2 [String, nil] A free-form address field set by the sender.
|
5559
5547
|
#
|
5560
|
-
# @param
|
5548
|
+
# @param debtor_address_line3 [String, nil] A free-form address field set by the sender.
|
5561
5549
|
#
|
5562
|
-
# @param
|
5550
|
+
# @param debtor_name [String, nil] A name set by the sender.
|
5563
5551
|
#
|
5564
|
-
# @param
|
5565
|
-
#
|
5566
|
-
# @param originator_name [String, nil] The originator of the wire, set by the sending bank.
|
5552
|
+
# @param description [String] An Increase-constructed description of the transfer.
|
5567
5553
|
#
|
5568
|
-
# @param
|
5554
|
+
# @param end_to_end_identification [String, nil] A free-form reference string set by the sender, to help identify the transfer.
|
5569
5555
|
#
|
5570
|
-
# @param
|
5556
|
+
# @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
|
5571
5557
|
#
|
5572
|
-
# @param
|
5558
|
+
# @param instructing_agent_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank that sent the
|
5573
5559
|
#
|
5574
|
-
# @param
|
5560
|
+
# @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
|
5575
5561
|
#
|
5576
|
-
# @param
|
5562
|
+
# @param transfer_id [String] The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
5577
5563
|
#
|
5578
|
-
# @param
|
5564
|
+
# @param unique_end_to_end_transaction_reference [String, nil] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
|
5579
5565
|
#
|
5580
|
-
# @param
|
5566
|
+
# @param unstructured_remittance_information [String, nil] A free-form message set by the sender.
|
5581
5567
|
end
|
5582
5568
|
|
5583
5569
|
# @see Increase::Models::Transaction::Source#inbound_wire_transfer_reversal
|
@@ -10,41 +10,37 @@ module Increase
|
|
10
10
|
#
|
11
11
|
# Simulates an [Inbound Wire Transfer](#inbound-wire-transfers) to your account.
|
12
12
|
#
|
13
|
-
# @overload create(account_number_id:, amount:,
|
13
|
+
# @overload create(account_number_id:, amount:, creditor_address_line1: nil, creditor_address_line2: nil, creditor_address_line3: nil, creditor_name: nil, debtor_address_line1: nil, debtor_address_line2: nil, debtor_address_line3: nil, debtor_name: nil, end_to_end_identification: nil, instructing_agent_routing_number: nil, instruction_identification: nil, unique_end_to_end_transaction_reference: nil, unstructured_remittance_information: nil, wire_drawdown_request_id: nil, request_options: {})
|
14
14
|
#
|
15
15
|
# @param account_number_id [String] The identifier of the Account Number the inbound Wire Transfer is for.
|
16
16
|
#
|
17
17
|
# @param amount [Integer] The transfer amount in cents. Must be positive.
|
18
18
|
#
|
19
|
-
# @param
|
19
|
+
# @param creditor_address_line1 [String] The sending bank will set creditor_address_line1 in production. You can simulate
|
20
20
|
#
|
21
|
-
# @param
|
21
|
+
# @param creditor_address_line2 [String] The sending bank will set creditor_address_line2 in production. You can simulate
|
22
22
|
#
|
23
|
-
# @param
|
23
|
+
# @param creditor_address_line3 [String] The sending bank will set creditor_address_line3 in production. You can simulate
|
24
24
|
#
|
25
|
-
# @param
|
25
|
+
# @param creditor_name [String] The sending bank will set creditor_name in production. You can simulate any valu
|
26
26
|
#
|
27
|
-
# @param
|
27
|
+
# @param debtor_address_line1 [String] The sending bank will set debtor_address_line1 in production. You can simulate a
|
28
28
|
#
|
29
|
-
# @param
|
29
|
+
# @param debtor_address_line2 [String] The sending bank will set debtor_address_line2 in production. You can simulate a
|
30
30
|
#
|
31
|
-
# @param
|
31
|
+
# @param debtor_address_line3 [String] The sending bank will set debtor_address_line3 in production. You can simulate a
|
32
32
|
#
|
33
|
-
# @param
|
33
|
+
# @param debtor_name [String] The sending bank will set debtor_name in production. You can simulate any value
|
34
34
|
#
|
35
|
-
# @param
|
35
|
+
# @param end_to_end_identification [String] The sending bank will set end_to_end_identification in production. You can simul
|
36
36
|
#
|
37
|
-
# @param
|
37
|
+
# @param instructing_agent_routing_number [String] The sending bank will set instructing_agent_routing_number in production. You ca
|
38
38
|
#
|
39
|
-
# @param
|
39
|
+
# @param instruction_identification [String] The sending bank will set instruction_identification in production. You can simu
|
40
40
|
#
|
41
|
-
# @param
|
41
|
+
# @param unique_end_to_end_transaction_reference [String] The sending bank will set unique_end_to_end_transaction_reference in production.
|
42
42
|
#
|
43
|
-
# @param
|
44
|
-
#
|
45
|
-
# @param originator_to_beneficiary_information_line4 [String] The sending bank will set originator_to_beneficiary_information_line4 in product
|
46
|
-
#
|
47
|
-
# @param sender_reference [String] The sending bank will set sender_reference in production. You can simulate any v
|
43
|
+
# @param unstructured_remittance_information [String] The sending bank will set unstructured_remittance_information in production. You
|
48
44
|
#
|
49
45
|
# @param wire_drawdown_request_id [String] The identifier of a Wire Drawdown Request the inbound Wire Transfer is fulfillin
|
50
46
|
#
|
data/lib/increase/version.rb
CHANGED