increase 1.48.0 → 1.50.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7997a5c9e1e534a698cfc7be447203aec7f799a8416de5904202e68beafbaad9
4
- data.tar.gz: 294d1eb074de91102e8a08ab52c556682cdc5a7a060991905e98f4e55c9b3fbf
3
+ metadata.gz: 2ad2b5f0e02176ac01467fdf196a5d9737bfe65fe8b76ea5ad1c4efc6081a816
4
+ data.tar.gz: 2d3f2aa92ef7c284a00dbe37edb07b22c90bca78c6774a75adfedfa004e8ee73
5
5
  SHA512:
6
- metadata.gz: 58b1d8467b92139c80ce57d3a79811bab223b2bcc22e2a7e4463e38ab84889f26d9a5bf6b11a101a562d804e66a5938a7c19300d08dc03a6abf7cf92bf0cb377
7
- data.tar.gz: 8f4cbd22ddfc19a61430b150ba6d2a01203c00581535c91bfb7acf7befaec77eee9e2ae029bda8f4ffb700041dd25986b06939755ce780273a42f0392d7a36cd
6
+ metadata.gz: 83be729c4180945f541ec882db128d64adf07c5590248689551ba5f723039edd29c39adefdca0ec0eedb17bba6988d4d5fbba31e479c5ce2751dbc620da4c458
7
+ data.tar.gz: 97be15cadecddb36205b8f1981f5fa421a8cc72794b562a63e9b8c107ca36b1bafb0f90dd455bd9610f2f646441ea771df9991d1575332ba7e6f9d88beeb15f4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.50.0 (2025-08-26)
4
+
5
+ Full Changelog: [v1.49.0...v1.50.0](https://github.com/Increase/increase-ruby/compare/v1.49.0...v1.50.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([88b4f70](https://github.com/Increase/increase-ruby/commit/88b4f7054b67bac26c4d60b4c0d782733259eca3))
10
+
11
+ ## 1.49.0 (2025-08-25)
12
+
13
+ Full Changelog: [v1.48.0...v1.49.0](https://github.com/Increase/increase-ruby/compare/v1.48.0...v1.49.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([3d186a4](https://github.com/Increase/increase-ruby/commit/3d186a4d0c5af826417f3cf8c821bd8e46991f00))
18
+
3
19
  ## 1.48.0 (2025-08-25)
4
20
 
5
21
  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
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.48.0"
18
+ gem "increase", "~> 1.50.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -16,48 +16,48 @@ module Increase
16
16
  # @return [Integer]
17
17
  required :amount, Integer
18
18
 
19
- # @!attribute beneficiary_account_number
20
- # The drawdown request's beneficiary's account number.
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 :beneficiary_account_number, String
30
+ required :creditor_account_number, String
24
31
 
25
- # @!attribute beneficiary_address_line1
26
- # Line 1 of the drawdown request's beneficiary's address.
32
+ # @!attribute creditor_address_line1
33
+ # A free-form address field set by the sender.
27
34
  #
28
35
  # @return [String, nil]
29
- required :beneficiary_address_line1, String, nil?: true
36
+ required :creditor_address_line1, String, nil?: true
30
37
 
31
- # @!attribute beneficiary_address_line2
32
- # Line 2 of the drawdown request's beneficiary's address.
38
+ # @!attribute creditor_address_line2
39
+ # A free-form address field set by the sender.
33
40
  #
34
41
  # @return [String, nil]
35
- required :beneficiary_address_line2, String, nil?: true
42
+ required :creditor_address_line2, String, nil?: true
36
43
 
37
- # @!attribute beneficiary_address_line3
38
- # Line 3 of the drawdown request's beneficiary's address.
44
+ # @!attribute creditor_address_line3
45
+ # A free-form address field set by the sender.
39
46
  #
40
47
  # @return [String, nil]
41
- required :beneficiary_address_line3, String, nil?: true
48
+ required :creditor_address_line3, String, nil?: true
42
49
 
43
- # @!attribute beneficiary_name
44
- # The drawdown request's beneficiary's name.
50
+ # @!attribute creditor_name
51
+ # A name set by the sender.
45
52
  #
46
53
  # @return [String, nil]
47
- required :beneficiary_name, String, nil?: true
54
+ required :creditor_name, String, nil?: true
48
55
 
49
- # @!attribute beneficiary_routing_number
50
- # The drawdown request's beneficiary's routing number.
56
+ # @!attribute creditor_routing_number
57
+ # The creditor's routing number.
51
58
  #
52
59
  # @return [String]
53
- required :beneficiary_routing_number, String
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 message_to_recipient
70
- # A message from the drawdown request's originator.
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 :originator_address_line1, String, nil?: true
73
+ required :debtor_address_line1, String, nil?: true
86
74
 
87
- # @!attribute originator_address_line2
88
- # Line 2 of the drawdown request's originator's address.
75
+ # @!attribute debtor_address_line2
76
+ # A free-form address field set by the sender.
89
77
  #
90
78
  # @return [String, nil]
91
- required :originator_address_line2, String, nil?: true
79
+ required :debtor_address_line2, String, nil?: true
92
80
 
93
- # @!attribute originator_address_line3
94
- # Line 3 of the drawdown request's originator's address.
81
+ # @!attribute debtor_address_line3
82
+ # A free-form address field set by the sender.
95
83
  #
96
84
  # @return [String, nil]
97
- required :originator_address_line3, String, nil?: true
85
+ required :debtor_address_line3, String, nil?: true
98
86
 
99
- # @!attribute originator_name
100
- # The drawdown request's originator's name.
87
+ # @!attribute debtor_name
88
+ # A name set by the sender.
101
89
  #
102
90
  # @return [String, nil]
103
- required :originator_name, String, nil?: true
91
+ required :debtor_name, String, nil?: true
104
92
 
105
- # @!attribute originator_routing_number
106
- # The drawdown request's originator's routing number.
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 :originator_to_beneficiary_information_line2, String, nil?: true
98
+ required :end_to_end_identification, String, nil?: true
124
99
 
125
- # @!attribute originator_to_beneficiary_information_line3
126
- # Line 3 of the information conveyed from the originator of the message to the
127
- # beneficiary.
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 :originator_to_beneficiary_information_line3, String, nil?: true
106
+ required :input_message_accountability_data, String, nil?: true
131
107
 
132
- # @!attribute originator_to_beneficiary_information_line4
133
- # Line 4 of the information conveyed from the originator of the message to the
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 :originator_to_beneficiary_information_line4, String, nil?: true
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
- # @!method initialize(id:, amount:, beneficiary_account_number:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_routing_number:, created_at:, currency:, message_to_recipient:, originator_account_number:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, originator_routing_number:, originator_to_beneficiary_information_line1:, originator_to_beneficiary_information_line2:, originator_to_beneficiary_information_line3:, originator_to_beneficiary_information_line4:, recipient_account_number_id:, type:)
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 beneficiary_account_number [String] The drawdown request's beneficiary's account number.
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 beneficiary_address_line1 [String, nil] Line 1 of the drawdown request's beneficiary's address.
156
+ # @param creditor_account_number [String] The creditor's account number.
168
157
  #
169
- # @param beneficiary_address_line2 [String, nil] Line 2 of the drawdown request's beneficiary's address.
158
+ # @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
170
159
  #
171
- # @param beneficiary_address_line3 [String, nil] Line 3 of the drawdown request's beneficiary's address.
160
+ # @param creditor_address_line2 [String, nil] A free-form address field set by the sender.
172
161
  #
173
- # @param beneficiary_name [String, nil] The drawdown request's beneficiary's name.
162
+ # @param creditor_address_line3 [String, nil] A free-form address field set by the sender.
174
163
  #
175
- # @param beneficiary_routing_number [String] The drawdown request's beneficiary's routing number.
164
+ # @param creditor_name [String, nil] A name set by the sender.
176
165
  #
177
- # @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
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 message_to_recipient [String, nil] A message from the drawdown request's originator.
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 originator_address_line1 [String, nil] Line 1 of the drawdown request's originator's address.
172
+ # @param debtor_address_line2 [String, nil] A free-form address field set by the sender.
186
173
  #
187
- # @param originator_address_line2 [String, nil] Line 2 of the drawdown request's originator's address.
174
+ # @param debtor_address_line3 [String, nil] A free-form address field set by the sender.
188
175
  #
189
- # @param originator_address_line3 [String, nil] Line 3 of the drawdown request's originator's address.
176
+ # @param debtor_name [String, nil] A name set by the sender.
190
177
  #
191
- # @param originator_name [String, nil] The drawdown request's originator's name.
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 originator_routing_number [String] The drawdown request's originator's routing number.
180
+ # @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
194
181
  #
195
- # @param originator_to_beneficiary_information_line1 [String, nil] Line 1 of the information conveyed from the originator of the message to the ben
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 beneficiary_account_number
18
- # The drawdown request's beneficiary's account number.
17
+ # @!attribute creditor_account_number
18
+ # The creditor's account number.
19
19
  #
20
20
  # @return [String]
21
- required :beneficiary_account_number, String
21
+ required :creditor_account_number, String
22
22
 
23
- # @!attribute beneficiary_routing_number
24
- # The drawdown request's beneficiary's routing number.
23
+ # @!attribute creditor_routing_number
24
+ # The creditor's routing number.
25
25
  #
26
26
  # @return [String]
27
- required :beneficiary_routing_number, String
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 beneficiary_address_line1
62
- # Line 1 of the drawdown request's beneficiary's address.
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 :beneficiary_address_line1, String
48
+ optional :creditor_address_line1, String
66
49
 
67
- # @!attribute beneficiary_address_line2
68
- # Line 2 of the drawdown request's beneficiary's address.
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 :beneficiary_address_line2, String
55
+ optional :creditor_address_line2, String
72
56
 
73
- # @!attribute beneficiary_address_line3
74
- # Line 3 of the drawdown request's beneficiary's address.
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 :beneficiary_address_line3, String
62
+ optional :creditor_address_line3, String
78
63
 
79
- # @!attribute beneficiary_name
80
- # The drawdown request's beneficiary's name.
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 :beneficiary_name, String
68
+ optional :creditor_name, String
84
69
 
85
- # @!attribute originator_address_line1
86
- # Line 1 of the drawdown request's originator's address.
70
+ # @!attribute debtor_account_number
71
+ # The debtor's account number.
87
72
  #
88
73
  # @return [String, nil]
89
- optional :originator_address_line1, String
74
+ optional :debtor_account_number, String
90
75
 
91
- # @!attribute originator_address_line2
92
- # Line 2 of the drawdown request's originator's address.
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 :originator_address_line2, String
81
+ optional :debtor_address_line1, String
96
82
 
97
- # @!attribute originator_address_line3
98
- # Line 3 of the drawdown request's originator's address.
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 :originator_address_line3, String
88
+ optional :debtor_address_line2, String
102
89
 
103
- # @!attribute originator_name
104
- # The drawdown request's originator's name.
90
+ # @!attribute debtor_address_line3
91
+ # A free-form address field set by the sender.
105
92
  #
106
93
  # @return [String, nil]
107
- optional :originator_name, String
94
+ optional :debtor_address_line3, String
108
95
 
109
- # @!attribute originator_to_beneficiary_information_line1
110
- # Line 1 of the information conveyed from the originator of the message to the
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 :originator_to_beneficiary_information_line1, String
100
+ optional :debtor_name, String
115
101
 
116
- # @!attribute originator_to_beneficiary_information_line2
117
- # Line 2 of the information conveyed from the originator of the message to the
118
- # beneficiary.
102
+ # @!attribute debtor_routing_number
103
+ # The debtor's routing number.
119
104
  #
120
105
  # @return [String, nil]
121
- optional :originator_to_beneficiary_information_line2, String
106
+ optional :debtor_routing_number, String
122
107
 
123
- # @!attribute originator_to_beneficiary_information_line3
124
- # Line 3 of the information conveyed from the originator of the message to the
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 :originator_to_beneficiary_information_line3, String
112
+ optional :end_to_end_identification, String
129
113
 
130
- # @!attribute originator_to_beneficiary_information_line4
131
- # Line 4 of the information conveyed from the originator of the message to the
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 :originator_to_beneficiary_information_line4, String
118
+ optional :instruction_identification, String
136
119
 
137
- # @!method initialize(amount:, beneficiary_account_number:, beneficiary_routing_number:, currency:, message_to_recipient:, originator_account_number:, originator_routing_number:, recipient_account_number_id:, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, beneficiary_name: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, originator_to_beneficiary_information_line1: nil, originator_to_beneficiary_information_line2: nil, originator_to_beneficiary_information_line3: nil, originator_to_beneficiary_information_line4: nil, request_options: {})
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 beneficiary_account_number [String] The drawdown request's beneficiary's account number.
141
+ # @param creditor_account_number [String] The creditor's account number.
145
142
  #
146
- # @param beneficiary_routing_number [String] The drawdown request's beneficiary's routing number.
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 message_to_recipient [String] A message from the drawdown request's originator.
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 originator_routing_number [String] The drawdown request's originator's routing number.
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 recipient_account_number_id [String] The Account Number to which the recipient of this request is being requested to
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 beneficiary_address_line1 [String] Line 1 of the drawdown request's beneficiary's address.
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 beneficiary_address_line2 [String] Line 2 of the drawdown request's beneficiary's address.
155
+ # @param creditor_name [String] A free-form name field set by the sender representing the creditor's name.
161
156
  #
162
- # @param beneficiary_address_line3 [String] Line 3 of the drawdown request's beneficiary's address.
157
+ # @param debtor_account_number [String] The debtor's account number.
163
158
  #
164
- # @param beneficiary_name [String] The drawdown request's beneficiary's name.
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 originator_address_line1 [String] Line 1 of the drawdown request's originator's address.
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 originator_address_line2 [String] Line 2 of the drawdown request's originator's address.
163
+ # @param debtor_address_line3 [String] A free-form address field set by the sender.
169
164
  #
170
- # @param originator_address_line3 [String] Line 3 of the drawdown request's originator's address.
165
+ # @param debtor_name [String] A free-form name field set by the sender representing the debtor's name.
171
166
  #
172
- # @param originator_name [String] The drawdown request's originator's name.
167
+ # @param debtor_routing_number [String] The debtor's routing number.
173
168
  #
174
- # @param originator_to_beneficiary_information_line1 [String] Line 1 of the information conveyed from the originator of the message to the ben
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 originator_to_beneficiary_information_line2 [String] Line 2 of the information conveyed from the originator of the message to the ben
171
+ # @param instruction_identification [String] The sending bank's identifier for the wire transfer.
177
172
  #
178
- # @param originator_to_beneficiary_information_line3 [String] Line 3 of the information conveyed from the originator of the message to the ben
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 originator_to_beneficiary_information_line4 [String] Line 4 of the information conveyed from the originator of the message to the ben
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
@@ -5150,14 +5150,14 @@ module Increase
5150
5150
  # The Fedwire cycle date for the wire transfer that is being reversed by this
5151
5151
  # message.
5152
5152
  #
5153
- # @return [Date]
5154
- required :previous_message_input_cycle_date, Date
5153
+ # @return [Date, nil]
5154
+ required :previous_message_input_cycle_date, Date, nil?: true
5155
5155
 
5156
5156
  # @!attribute previous_message_input_message_accountability_data
5157
5157
  # The Fedwire transaction identifier for the wire transfer that was reversed.
5158
5158
  #
5159
- # @return [String]
5160
- required :previous_message_input_message_accountability_data, String
5159
+ # @return [String, nil]
5160
+ required :previous_message_input_message_accountability_data, String, nil?: true
5161
5161
 
5162
5162
  # @!attribute previous_message_input_sequence_number
5163
5163
  # The Fedwire sequence number for the wire transfer that was reversed.
@@ -5168,8 +5168,8 @@ module Increase
5168
5168
  # @!attribute previous_message_input_source
5169
5169
  # The Fedwire input source identifier for the wire transfer that was reversed.
5170
5170
  #
5171
- # @return [String]
5172
- required :previous_message_input_source, String
5171
+ # @return [String, nil]
5172
+ required :previous_message_input_source, String, nil?: true
5173
5173
 
5174
5174
  # @!attribute receiver_financial_institution_information
5175
5175
  # Information included in the wire reversal for the receiving financial
@@ -5226,13 +5226,13 @@ module Increase
5226
5226
  #
5227
5227
  # @param originator_to_beneficiary_information [String, nil] Additional information included in the wire reversal by the reversal originator.
5228
5228
  #
5229
- # @param previous_message_input_cycle_date [Date] The Fedwire cycle date for the wire transfer that is being reversed by this mess
5229
+ # @param previous_message_input_cycle_date [Date, nil] The Fedwire cycle date for the wire transfer that is being reversed by this mess
5230
5230
  #
5231
- # @param previous_message_input_message_accountability_data [String] The Fedwire transaction identifier for the wire transfer that was reversed.
5231
+ # @param previous_message_input_message_accountability_data [String, nil] The Fedwire transaction identifier for the wire transfer that was reversed.
5232
5232
  #
5233
5233
  # @param previous_message_input_sequence_number [String] The Fedwire sequence number for the wire transfer that was reversed.
5234
5234
  #
5235
- # @param previous_message_input_source [String] The Fedwire input source identifier for the wire transfer that was reversed.
5235
+ # @param previous_message_input_source [String, nil] The Fedwire input source identifier for the wire transfer that was reversed.
5236
5236
  #
5237
5237
  # @param receiver_financial_institution_information [String, nil] Information included in the wire reversal for the receiving financial institutio
5238
5238
  #