increase 1.48.0 → 1.49.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_drawdown_request.rb +82 -97
- data/lib/increase/models/simulations/inbound_wire_drawdown_request_create_params.rb +79 -84
- 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/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/resources/simulations/inbound_wire_drawdown_requests.rbs +16 -17
- 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: f11c5993f8f68b42c896a1e3b2540d10f268e52045bcf0d7ba0c964348ea9c86
|
4
|
+
data.tar.gz: df1a3c9240d945317b0379b2ee1052b798536c8d2f6896fbce448f5cc372bfd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b26a7e8a05e126de90dbd48895833b51567eee185bdb53c2cf46d86d2ad4630e059db03711bd42ef8b886a01b9c7a7b74211c972622c883d8c44b32176fba4e
|
7
|
+
data.tar.gz: 53e1821b8ede7d417bace62b7de5be8e02bb54a0e88df07cb11eb4d797449755a1a5f75a16177816930c36c4593c921f7195a515cefea23987925e7e85cd65c8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.49.0 (2025-08-25)
|
4
|
+
|
5
|
+
Full Changelog: [v1.48.0...v1.49.0](https://github.com/Increase/increase-ruby/compare/v1.48.0...v1.49.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([3d186a4](https://github.com/Increase/increase-ruby/commit/3d186a4d0c5af826417f3cf8c821bd8e46991f00))
|
10
|
+
|
3
11
|
## 1.48.0 (2025-08-25)
|
4
12
|
|
5
13
|
Full Changelog: [v1.47.0...v1.48.0](https://github.com/Increase/increase-ruby/compare/v1.47.0...v1.48.0)
|
data/README.md
CHANGED
@@ -16,48 +16,48 @@ module Increase
|
|
16
16
|
# @return [Integer]
|
17
17
|
required :amount, Integer
|
18
18
|
|
19
|
-
# @!attribute
|
20
|
-
# The
|
19
|
+
# @!attribute created_at
|
20
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
21
|
+
# the inbound wire drawdown requested was created.
|
22
|
+
#
|
23
|
+
# @return [Time]
|
24
|
+
required :created_at, Time
|
25
|
+
|
26
|
+
# @!attribute creditor_account_number
|
27
|
+
# The creditor's account number.
|
21
28
|
#
|
22
29
|
# @return [String]
|
23
|
-
required :
|
30
|
+
required :creditor_account_number, String
|
24
31
|
|
25
|
-
# @!attribute
|
26
|
-
#
|
32
|
+
# @!attribute creditor_address_line1
|
33
|
+
# A free-form address field set by the sender.
|
27
34
|
#
|
28
35
|
# @return [String, nil]
|
29
|
-
required :
|
36
|
+
required :creditor_address_line1, String, nil?: true
|
30
37
|
|
31
|
-
# @!attribute
|
32
|
-
#
|
38
|
+
# @!attribute creditor_address_line2
|
39
|
+
# A free-form address field set by the sender.
|
33
40
|
#
|
34
41
|
# @return [String, nil]
|
35
|
-
required :
|
42
|
+
required :creditor_address_line2, String, nil?: true
|
36
43
|
|
37
|
-
# @!attribute
|
38
|
-
#
|
44
|
+
# @!attribute creditor_address_line3
|
45
|
+
# A free-form address field set by the sender.
|
39
46
|
#
|
40
47
|
# @return [String, nil]
|
41
|
-
required :
|
48
|
+
required :creditor_address_line3, String, nil?: true
|
42
49
|
|
43
|
-
# @!attribute
|
44
|
-
#
|
50
|
+
# @!attribute creditor_name
|
51
|
+
# A name set by the sender.
|
45
52
|
#
|
46
53
|
# @return [String, nil]
|
47
|
-
required :
|
54
|
+
required :creditor_name, String, nil?: true
|
48
55
|
|
49
|
-
# @!attribute
|
50
|
-
# The
|
56
|
+
# @!attribute creditor_routing_number
|
57
|
+
# The creditor's routing number.
|
51
58
|
#
|
52
59
|
# @return [String]
|
53
|
-
required :
|
54
|
-
|
55
|
-
# @!attribute created_at
|
56
|
-
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
57
|
-
# the inbound wire drawdown requested was created.
|
58
|
-
#
|
59
|
-
# @return [Time]
|
60
|
-
required :created_at, Time
|
60
|
+
required :creditor_routing_number, String
|
61
61
|
|
62
62
|
# @!attribute currency
|
63
63
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
|
@@ -66,75 +66,50 @@ module Increase
|
|
66
66
|
# @return [String]
|
67
67
|
required :currency, String
|
68
68
|
|
69
|
-
# @!attribute
|
70
|
-
# A
|
71
|
-
#
|
72
|
-
# @return [String, nil]
|
73
|
-
required :message_to_recipient, String, nil?: true
|
74
|
-
|
75
|
-
# @!attribute originator_account_number
|
76
|
-
# The drawdown request's originator's account number.
|
77
|
-
#
|
78
|
-
# @return [String, nil]
|
79
|
-
required :originator_account_number, String, nil?: true
|
80
|
-
|
81
|
-
# @!attribute originator_address_line1
|
82
|
-
# Line 1 of the drawdown request's originator's address.
|
69
|
+
# @!attribute debtor_address_line1
|
70
|
+
# A free-form address field set by the sender.
|
83
71
|
#
|
84
72
|
# @return [String, nil]
|
85
|
-
required :
|
73
|
+
required :debtor_address_line1, String, nil?: true
|
86
74
|
|
87
|
-
# @!attribute
|
88
|
-
#
|
75
|
+
# @!attribute debtor_address_line2
|
76
|
+
# A free-form address field set by the sender.
|
89
77
|
#
|
90
78
|
# @return [String, nil]
|
91
|
-
required :
|
79
|
+
required :debtor_address_line2, String, nil?: true
|
92
80
|
|
93
|
-
# @!attribute
|
94
|
-
#
|
81
|
+
# @!attribute debtor_address_line3
|
82
|
+
# A free-form address field set by the sender.
|
95
83
|
#
|
96
84
|
# @return [String, nil]
|
97
|
-
required :
|
85
|
+
required :debtor_address_line3, String, nil?: true
|
98
86
|
|
99
|
-
# @!attribute
|
100
|
-
#
|
87
|
+
# @!attribute debtor_name
|
88
|
+
# A name set by the sender.
|
101
89
|
#
|
102
90
|
# @return [String, nil]
|
103
|
-
required :
|
91
|
+
required :debtor_name, String, nil?: true
|
104
92
|
|
105
|
-
# @!attribute
|
106
|
-
#
|
107
|
-
#
|
108
|
-
# @return [String]
|
109
|
-
required :originator_routing_number, String
|
110
|
-
|
111
|
-
# @!attribute originator_to_beneficiary_information_line1
|
112
|
-
# Line 1 of the information conveyed from the originator of the message to the
|
113
|
-
# beneficiary.
|
114
|
-
#
|
115
|
-
# @return [String, nil]
|
116
|
-
required :originator_to_beneficiary_information_line1, String, nil?: true
|
117
|
-
|
118
|
-
# @!attribute originator_to_beneficiary_information_line2
|
119
|
-
# Line 2 of the information conveyed from the originator of the message to the
|
120
|
-
# beneficiary.
|
93
|
+
# @!attribute end_to_end_identification
|
94
|
+
# A free-form reference string set by the sender, to help identify the drawdown
|
95
|
+
# request.
|
121
96
|
#
|
122
97
|
# @return [String, nil]
|
123
|
-
required :
|
98
|
+
required :end_to_end_identification, String, nil?: true
|
124
99
|
|
125
|
-
# @!attribute
|
126
|
-
#
|
127
|
-
#
|
100
|
+
# @!attribute input_message_accountability_data
|
101
|
+
# A unique identifier available to the originating and receiving banks, commonly
|
102
|
+
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
103
|
+
# service and is helpful when debugging wires with the originating bank.
|
128
104
|
#
|
129
105
|
# @return [String, nil]
|
130
|
-
required :
|
106
|
+
required :input_message_accountability_data, String, nil?: true
|
131
107
|
|
132
|
-
# @!attribute
|
133
|
-
#
|
134
|
-
# beneficiary.
|
108
|
+
# @!attribute instruction_identification
|
109
|
+
# The sending bank's identifier for the drawdown request.
|
135
110
|
#
|
136
111
|
# @return [String, nil]
|
137
|
-
required :
|
112
|
+
required :instruction_identification, String, nil?: true
|
138
113
|
|
139
114
|
# @!attribute recipient_account_number_id
|
140
115
|
# The Account Number from which the recipient of this request is being requested
|
@@ -150,7 +125,21 @@ module Increase
|
|
150
125
|
# @return [Symbol, Increase::Models::InboundWireDrawdownRequest::Type]
|
151
126
|
required :type, enum: -> { Increase::InboundWireDrawdownRequest::Type }
|
152
127
|
|
153
|
-
# @!
|
128
|
+
# @!attribute unique_end_to_end_transaction_reference
|
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 drawdown request.
|
132
|
+
#
|
133
|
+
# @return [String, nil]
|
134
|
+
required :unique_end_to_end_transaction_reference, String, nil?: true
|
135
|
+
|
136
|
+
# @!attribute unstructured_remittance_information
|
137
|
+
# A free-form message set by the sender.
|
138
|
+
#
|
139
|
+
# @return [String, nil]
|
140
|
+
required :unstructured_remittance_information, String, nil?: true
|
141
|
+
|
142
|
+
# @!method initialize(id:, amount:, created_at:, creditor_account_number:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, creditor_routing_number:, currency:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, end_to_end_identification:, input_message_accountability_data:, instruction_identification:, recipient_account_number_id:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:)
|
154
143
|
# Some parameter documentations has been truncated, see
|
155
144
|
# {Increase::Models::InboundWireDrawdownRequest} for more details.
|
156
145
|
#
|
@@ -162,47 +151,43 @@ module Increase
|
|
162
151
|
#
|
163
152
|
# @param amount [Integer] The amount being requested in cents.
|
164
153
|
#
|
165
|
-
# @param
|
154
|
+
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
166
155
|
#
|
167
|
-
# @param
|
156
|
+
# @param creditor_account_number [String] The creditor's account number.
|
168
157
|
#
|
169
|
-
# @param
|
158
|
+
# @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
|
170
159
|
#
|
171
|
-
# @param
|
160
|
+
# @param creditor_address_line2 [String, nil] A free-form address field set by the sender.
|
172
161
|
#
|
173
|
-
# @param
|
162
|
+
# @param creditor_address_line3 [String, nil] A free-form address field set by the sender.
|
174
163
|
#
|
175
|
-
# @param
|
164
|
+
# @param creditor_name [String, nil] A name set by the sender.
|
176
165
|
#
|
177
|
-
# @param
|
166
|
+
# @param creditor_routing_number [String] The creditor's routing number.
|
178
167
|
#
|
179
168
|
# @param currency [String] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
|
180
169
|
#
|
181
|
-
# @param
|
182
|
-
#
|
183
|
-
# @param originator_account_number [String, nil] The drawdown request's originator's account number.
|
170
|
+
# @param debtor_address_line1 [String, nil] A free-form address field set by the sender.
|
184
171
|
#
|
185
|
-
# @param
|
172
|
+
# @param debtor_address_line2 [String, nil] A free-form address field set by the sender.
|
186
173
|
#
|
187
|
-
# @param
|
174
|
+
# @param debtor_address_line3 [String, nil] A free-form address field set by the sender.
|
188
175
|
#
|
189
|
-
# @param
|
176
|
+
# @param debtor_name [String, nil] A name set by the sender.
|
190
177
|
#
|
191
|
-
# @param
|
178
|
+
# @param end_to_end_identification [String, nil] A free-form reference string set by the sender, to help identify the drawdown re
|
192
179
|
#
|
193
|
-
# @param
|
180
|
+
# @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
|
194
181
|
#
|
195
|
-
# @param
|
196
|
-
#
|
197
|
-
# @param originator_to_beneficiary_information_line2 [String, nil] Line 2 of the information conveyed from the originator of the message to the ben
|
198
|
-
#
|
199
|
-
# @param originator_to_beneficiary_information_line3 [String, nil] Line 3 of the information conveyed from the originator of the message to the ben
|
200
|
-
#
|
201
|
-
# @param originator_to_beneficiary_information_line4 [String, nil] Line 4 of the information conveyed from the originator of the message to the ben
|
182
|
+
# @param instruction_identification [String, nil] The sending bank's identifier for the drawdown request.
|
202
183
|
#
|
203
184
|
# @param recipient_account_number_id [String] The Account Number from which the recipient of this request is being requested t
|
204
185
|
#
|
205
186
|
# @param type [Symbol, Increase::Models::InboundWireDrawdownRequest::Type] A constant representing the object's type. For this resource it will always be `
|
187
|
+
#
|
188
|
+
# @param unique_end_to_end_transaction_reference [String, nil] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
|
189
|
+
#
|
190
|
+
# @param unstructured_remittance_information [String, nil] A free-form message set by the sender.
|
206
191
|
|
207
192
|
# A constant representing the object's type. For this resource it will always be
|
208
193
|
# `inbound_wire_drawdown_request`.
|
@@ -14,17 +14,17 @@ module Increase
|
|
14
14
|
# @return [Integer]
|
15
15
|
required :amount, Integer
|
16
16
|
|
17
|
-
# @!attribute
|
18
|
-
# The
|
17
|
+
# @!attribute creditor_account_number
|
18
|
+
# The creditor's account number.
|
19
19
|
#
|
20
20
|
# @return [String]
|
21
|
-
required :
|
21
|
+
required :creditor_account_number, String
|
22
22
|
|
23
|
-
# @!attribute
|
24
|
-
# The
|
23
|
+
# @!attribute creditor_routing_number
|
24
|
+
# The creditor's routing number.
|
25
25
|
#
|
26
26
|
# @return [String]
|
27
|
-
required :
|
27
|
+
required :creditor_routing_number, String
|
28
28
|
|
29
29
|
# @!attribute currency
|
30
30
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
|
@@ -33,24 +33,6 @@ module Increase
|
|
33
33
|
# @return [String]
|
34
34
|
required :currency, String
|
35
35
|
|
36
|
-
# @!attribute message_to_recipient
|
37
|
-
# A message from the drawdown request's originator.
|
38
|
-
#
|
39
|
-
# @return [String]
|
40
|
-
required :message_to_recipient, String
|
41
|
-
|
42
|
-
# @!attribute originator_account_number
|
43
|
-
# The drawdown request's originator's account number.
|
44
|
-
#
|
45
|
-
# @return [String]
|
46
|
-
required :originator_account_number, String
|
47
|
-
|
48
|
-
# @!attribute originator_routing_number
|
49
|
-
# The drawdown request's originator's routing number.
|
50
|
-
#
|
51
|
-
# @return [String]
|
52
|
-
required :originator_routing_number, String
|
53
|
-
|
54
36
|
# @!attribute recipient_account_number_id
|
55
37
|
# The Account Number to which the recipient of this request is being requested to
|
56
38
|
# send funds from.
|
@@ -58,126 +40,139 @@ module Increase
|
|
58
40
|
# @return [String]
|
59
41
|
required :recipient_account_number_id, String
|
60
42
|
|
61
|
-
# @!attribute
|
62
|
-
#
|
43
|
+
# @!attribute creditor_address_line1
|
44
|
+
# A free-form address field set by the sender representing the first line of the
|
45
|
+
# creditor's address.
|
63
46
|
#
|
64
47
|
# @return [String, nil]
|
65
|
-
optional :
|
48
|
+
optional :creditor_address_line1, String
|
66
49
|
|
67
|
-
# @!attribute
|
68
|
-
#
|
50
|
+
# @!attribute creditor_address_line2
|
51
|
+
# A free-form address field set by the sender representing the second line of the
|
52
|
+
# creditor's address.
|
69
53
|
#
|
70
54
|
# @return [String, nil]
|
71
|
-
optional :
|
55
|
+
optional :creditor_address_line2, String
|
72
56
|
|
73
|
-
# @!attribute
|
74
|
-
#
|
57
|
+
# @!attribute creditor_address_line3
|
58
|
+
# A free-form address field set by the sender representing the third line of the
|
59
|
+
# creditor's address.
|
75
60
|
#
|
76
61
|
# @return [String, nil]
|
77
|
-
optional :
|
62
|
+
optional :creditor_address_line3, String
|
78
63
|
|
79
|
-
# @!attribute
|
80
|
-
#
|
64
|
+
# @!attribute creditor_name
|
65
|
+
# A free-form name field set by the sender representing the creditor's name.
|
81
66
|
#
|
82
67
|
# @return [String, nil]
|
83
|
-
optional :
|
68
|
+
optional :creditor_name, String
|
84
69
|
|
85
|
-
# @!attribute
|
86
|
-
#
|
70
|
+
# @!attribute debtor_account_number
|
71
|
+
# The debtor's account number.
|
87
72
|
#
|
88
73
|
# @return [String, nil]
|
89
|
-
optional :
|
74
|
+
optional :debtor_account_number, String
|
90
75
|
|
91
|
-
# @!attribute
|
92
|
-
#
|
76
|
+
# @!attribute debtor_address_line1
|
77
|
+
# A free-form address field set by the sender representing the first line of the
|
78
|
+
# debtor's address.
|
93
79
|
#
|
94
80
|
# @return [String, nil]
|
95
|
-
optional :
|
81
|
+
optional :debtor_address_line1, String
|
96
82
|
|
97
|
-
# @!attribute
|
98
|
-
#
|
83
|
+
# @!attribute debtor_address_line2
|
84
|
+
# A free-form address field set by the sender representing the second line of the
|
85
|
+
# debtor's address.
|
99
86
|
#
|
100
87
|
# @return [String, nil]
|
101
|
-
optional :
|
88
|
+
optional :debtor_address_line2, String
|
102
89
|
|
103
|
-
# @!attribute
|
104
|
-
#
|
90
|
+
# @!attribute debtor_address_line3
|
91
|
+
# A free-form address field set by the sender.
|
105
92
|
#
|
106
93
|
# @return [String, nil]
|
107
|
-
optional :
|
94
|
+
optional :debtor_address_line3, String
|
108
95
|
|
109
|
-
# @!attribute
|
110
|
-
#
|
111
|
-
# beneficiary.
|
96
|
+
# @!attribute debtor_name
|
97
|
+
# A free-form name field set by the sender representing the debtor's name.
|
112
98
|
#
|
113
99
|
# @return [String, nil]
|
114
|
-
optional :
|
100
|
+
optional :debtor_name, String
|
115
101
|
|
116
|
-
# @!attribute
|
117
|
-
#
|
118
|
-
# beneficiary.
|
102
|
+
# @!attribute debtor_routing_number
|
103
|
+
# The debtor's routing number.
|
119
104
|
#
|
120
105
|
# @return [String, nil]
|
121
|
-
optional :
|
106
|
+
optional :debtor_routing_number, String
|
122
107
|
|
123
|
-
# @!attribute
|
124
|
-
#
|
125
|
-
# beneficiary.
|
108
|
+
# @!attribute end_to_end_identification
|
109
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
126
110
|
#
|
127
111
|
# @return [String, nil]
|
128
|
-
optional :
|
112
|
+
optional :end_to_end_identification, String
|
129
113
|
|
130
|
-
# @!attribute
|
131
|
-
#
|
132
|
-
# beneficiary.
|
114
|
+
# @!attribute instruction_identification
|
115
|
+
# The sending bank's identifier for the wire transfer.
|
133
116
|
#
|
134
117
|
# @return [String, nil]
|
135
|
-
optional :
|
118
|
+
optional :instruction_identification, String
|
136
119
|
|
137
|
-
# @!
|
120
|
+
# @!attribute unique_end_to_end_transaction_reference
|
121
|
+
# The Unique End-to-end Transaction Reference
|
122
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
123
|
+
# of the transfer.
|
124
|
+
#
|
125
|
+
# @return [String, nil]
|
126
|
+
optional :unique_end_to_end_transaction_reference, String
|
127
|
+
|
128
|
+
# @!attribute unstructured_remittance_information
|
129
|
+
# A free-form message set by the sender.
|
130
|
+
#
|
131
|
+
# @return [String, nil]
|
132
|
+
optional :unstructured_remittance_information, String
|
133
|
+
|
134
|
+
# @!method initialize(amount:, creditor_account_number:, creditor_routing_number:, currency:, recipient_account_number_id:, creditor_address_line1: nil, creditor_address_line2: nil, creditor_address_line3: nil, creditor_name: nil, debtor_account_number: nil, debtor_address_line1: nil, debtor_address_line2: nil, debtor_address_line3: nil, debtor_name: nil, debtor_routing_number: nil, end_to_end_identification: nil, instruction_identification: nil, unique_end_to_end_transaction_reference: nil, unstructured_remittance_information: nil, request_options: {})
|
138
135
|
# Some parameter documentations has been truncated, see
|
139
136
|
# {Increase::Models::Simulations::InboundWireDrawdownRequestCreateParams} for more
|
140
137
|
# details.
|
141
138
|
#
|
142
139
|
# @param amount [Integer] The amount being requested in cents.
|
143
140
|
#
|
144
|
-
# @param
|
141
|
+
# @param creditor_account_number [String] The creditor's account number.
|
145
142
|
#
|
146
|
-
# @param
|
143
|
+
# @param creditor_routing_number [String] The creditor's routing number.
|
147
144
|
#
|
148
145
|
# @param currency [String] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
|
149
146
|
#
|
150
|
-
# @param
|
151
|
-
#
|
152
|
-
# @param originator_account_number [String] The drawdown request's originator's account number.
|
147
|
+
# @param recipient_account_number_id [String] The Account Number to which the recipient of this request is being requested to
|
153
148
|
#
|
154
|
-
# @param
|
149
|
+
# @param creditor_address_line1 [String] A free-form address field set by the sender representing the first line of the c
|
155
150
|
#
|
156
|
-
# @param
|
151
|
+
# @param creditor_address_line2 [String] A free-form address field set by the sender representing the second line of the
|
157
152
|
#
|
158
|
-
# @param
|
153
|
+
# @param creditor_address_line3 [String] A free-form address field set by the sender representing the third line of the c
|
159
154
|
#
|
160
|
-
# @param
|
155
|
+
# @param creditor_name [String] A free-form name field set by the sender representing the creditor's name.
|
161
156
|
#
|
162
|
-
# @param
|
157
|
+
# @param debtor_account_number [String] The debtor's account number.
|
163
158
|
#
|
164
|
-
# @param
|
159
|
+
# @param debtor_address_line1 [String] A free-form address field set by the sender representing the first line of the d
|
165
160
|
#
|
166
|
-
# @param
|
161
|
+
# @param debtor_address_line2 [String] A free-form address field set by the sender representing the second line of the
|
167
162
|
#
|
168
|
-
# @param
|
163
|
+
# @param debtor_address_line3 [String] A free-form address field set by the sender.
|
169
164
|
#
|
170
|
-
# @param
|
165
|
+
# @param debtor_name [String] A free-form name field set by the sender representing the debtor's name.
|
171
166
|
#
|
172
|
-
# @param
|
167
|
+
# @param debtor_routing_number [String] The debtor's routing number.
|
173
168
|
#
|
174
|
-
# @param
|
169
|
+
# @param end_to_end_identification [String] A free-form reference string set by the sender, to help identify the transfer.
|
175
170
|
#
|
176
|
-
# @param
|
171
|
+
# @param instruction_identification [String] The sending bank's identifier for the wire transfer.
|
177
172
|
#
|
178
|
-
# @param
|
173
|
+
# @param unique_end_to_end_transaction_reference [String] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
|
179
174
|
#
|
180
|
-
# @param
|
175
|
+
# @param unstructured_remittance_information [String] A free-form message set by the sender.
|
181
176
|
#
|
182
177
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
183
178
|
end
|
@@ -11,47 +11,45 @@ module Increase
|
|
11
11
|
# Simulates receiving an
|
12
12
|
# [Inbound Wire Drawdown Request](#inbound-wire-drawdown-requests).
|
13
13
|
#
|
14
|
-
# @overload create(amount:,
|
14
|
+
# @overload create(amount:, creditor_account_number:, creditor_routing_number:, currency:, recipient_account_number_id:, creditor_address_line1: nil, creditor_address_line2: nil, creditor_address_line3: nil, creditor_name: nil, debtor_account_number: nil, debtor_address_line1: nil, debtor_address_line2: nil, debtor_address_line3: nil, debtor_name: nil, debtor_routing_number: nil, end_to_end_identification: nil, instruction_identification: nil, unique_end_to_end_transaction_reference: nil, unstructured_remittance_information: nil, request_options: {})
|
15
15
|
#
|
16
16
|
# @param amount [Integer] The amount being requested in cents.
|
17
17
|
#
|
18
|
-
# @param
|
18
|
+
# @param creditor_account_number [String] The creditor's account number.
|
19
19
|
#
|
20
|
-
# @param
|
20
|
+
# @param creditor_routing_number [String] The creditor's routing number.
|
21
21
|
#
|
22
22
|
# @param currency [String] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
|
23
23
|
#
|
24
|
-
# @param
|
25
|
-
#
|
26
|
-
# @param originator_account_number [String] The drawdown request's originator's account number.
|
24
|
+
# @param recipient_account_number_id [String] The Account Number to which the recipient of this request is being requested to
|
27
25
|
#
|
28
|
-
# @param
|
26
|
+
# @param creditor_address_line1 [String] A free-form address field set by the sender representing the first line of the c
|
29
27
|
#
|
30
|
-
# @param
|
28
|
+
# @param creditor_address_line2 [String] A free-form address field set by the sender representing the second line of the
|
31
29
|
#
|
32
|
-
# @param
|
30
|
+
# @param creditor_address_line3 [String] A free-form address field set by the sender representing the third line of the c
|
33
31
|
#
|
34
|
-
# @param
|
32
|
+
# @param creditor_name [String] A free-form name field set by the sender representing the creditor's name.
|
35
33
|
#
|
36
|
-
# @param
|
34
|
+
# @param debtor_account_number [String] The debtor's account number.
|
37
35
|
#
|
38
|
-
# @param
|
36
|
+
# @param debtor_address_line1 [String] A free-form address field set by the sender representing the first line of the d
|
39
37
|
#
|
40
|
-
# @param
|
38
|
+
# @param debtor_address_line2 [String] A free-form address field set by the sender representing the second line of the
|
41
39
|
#
|
42
|
-
# @param
|
40
|
+
# @param debtor_address_line3 [String] A free-form address field set by the sender.
|
43
41
|
#
|
44
|
-
# @param
|
42
|
+
# @param debtor_name [String] A free-form name field set by the sender representing the debtor's name.
|
45
43
|
#
|
46
|
-
# @param
|
44
|
+
# @param debtor_routing_number [String] The debtor's routing number.
|
47
45
|
#
|
48
|
-
# @param
|
46
|
+
# @param end_to_end_identification [String] A free-form reference string set by the sender, to help identify the transfer.
|
49
47
|
#
|
50
|
-
# @param
|
48
|
+
# @param instruction_identification [String] The sending bank's identifier for the wire transfer.
|
51
49
|
#
|
52
|
-
# @param
|
50
|
+
# @param unique_end_to_end_transaction_reference [String] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
|
53
51
|
#
|
54
|
-
# @param
|
52
|
+
# @param unstructured_remittance_information [String] A free-form message set by the sender.
|
55
53
|
#
|
56
54
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
57
55
|
#
|