increase 1.267.0 → 1.269.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/card_push_transfer_create_params.rb +53 -1
- data/lib/increase/models/real_time_payments_transfer_create_params.rb +1 -15
- data/lib/increase/resources/card_push_transfers.rb +13 -1
- data/lib/increase/resources/real_time_payments_transfers.rb +1 -5
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_push_transfer_create_params.rbi +74 -0
- data/rbi/increase/models/real_time_payments_transfer_create_params.rbi +0 -18
- data/rbi/increase/resources/card_push_transfers.rbi +22 -0
- data/rbi/increase/resources/real_time_payments_transfers.rbi +0 -4
- data/sig/increase/models/card_push_transfer_create_params.rbs +42 -0
- data/sig/increase/models/real_time_payments_transfer_create_params.rbs +0 -14
- data/sig/increase/resources/card_push_transfers.rbs +6 -0
- data/sig/increase/resources/real_time_payments_transfers.rbs +0 -2
- 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: 8971f61ddc00be46dc4ff23cb3bf23ef2d0beb890b904d85852f376f59f91a5d
|
|
4
|
+
data.tar.gz: bb219a8985374faf4614e5dd50000d6e19ea258615223b7258cbcd81efa56f97
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bdba3f753711504b7d8dbc0fd4a9c898cf14ba2bd2d90ba8ffe06720c8bdfb94c72d566e1b474cf75a8a1e5efb5c5ceca4776115cf1ba1c0c5dbc22f1b0fb346
|
|
7
|
+
data.tar.gz: 8c945366cc4573c3903f9e93fd65b8b89546bb196aa4f77c22572ded8ddb64f90a6d18ebfa4e9438dc88768609deb37a922010ff14edee4895eac84145d926de
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.269.0 (2026-03-24)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.268.0...v1.269.0](https://github.com/Increase/increase-ruby/compare/v1.268.0...v1.269.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([a2fef35](https://github.com/Increase/increase-ruby/commit/a2fef35b582e081732a3b8e100d4b8a35ce460d6))
|
|
10
|
+
|
|
11
|
+
## 1.268.0 (2026-03-24)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.267.0...v1.268.0](https://github.com/Increase/increase-ruby/compare/v1.267.0...v1.268.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([b63d832](https://github.com/Increase/increase-ruby/commit/b63d83233aa99cdd3f1415a2d375fe927e8a5f7e))
|
|
18
|
+
|
|
3
19
|
## 1.267.0 (2026-03-24)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.266.0...v1.267.0](https://github.com/Increase/increase-ruby/compare/v1.266.0...v1.267.0)
|
data/README.md
CHANGED
|
@@ -115,13 +115,53 @@ module Increase
|
|
|
115
115
|
# @return [String]
|
|
116
116
|
required :source_account_number_id, String
|
|
117
117
|
|
|
118
|
+
# @!attribute merchant_legal_business_name
|
|
119
|
+
# The legal business name of the merchant (generally your business) sending the
|
|
120
|
+
# transfer. Required if the card is issued in Canada.
|
|
121
|
+
#
|
|
122
|
+
# @return [String, nil]
|
|
123
|
+
optional :merchant_legal_business_name, String
|
|
124
|
+
|
|
125
|
+
# @!attribute merchant_street_address
|
|
126
|
+
# The street address of the merchant (generally your business) sending the
|
|
127
|
+
# transfer. Required if the card is issued in Canada.
|
|
128
|
+
#
|
|
129
|
+
# @return [String, nil]
|
|
130
|
+
optional :merchant_street_address, String
|
|
131
|
+
|
|
132
|
+
# @!attribute recipient_address_city
|
|
133
|
+
# The city of the recipient. Required if the card is issued in Canada.
|
|
134
|
+
#
|
|
135
|
+
# @return [String, nil]
|
|
136
|
+
optional :recipient_address_city, String
|
|
137
|
+
|
|
138
|
+
# @!attribute recipient_address_line1
|
|
139
|
+
# The first line of the recipient's address. Required if the card is issued in
|
|
140
|
+
# Canada.
|
|
141
|
+
#
|
|
142
|
+
# @return [String, nil]
|
|
143
|
+
optional :recipient_address_line1, String
|
|
144
|
+
|
|
145
|
+
# @!attribute recipient_address_postal_code
|
|
146
|
+
# The postal code of the recipient. Required if the card is issued in Canada.
|
|
147
|
+
#
|
|
148
|
+
# @return [String, nil]
|
|
149
|
+
optional :recipient_address_postal_code, String
|
|
150
|
+
|
|
151
|
+
# @!attribute recipient_address_state
|
|
152
|
+
# The state or province of the recipient. Required if the card is issued in
|
|
153
|
+
# Canada.
|
|
154
|
+
#
|
|
155
|
+
# @return [String, nil]
|
|
156
|
+
optional :recipient_address_state, String
|
|
157
|
+
|
|
118
158
|
# @!attribute require_approval
|
|
119
159
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
120
160
|
#
|
|
121
161
|
# @return [Boolean, nil]
|
|
122
162
|
optional :require_approval, Increase::Internal::Type::Boolean
|
|
123
163
|
|
|
124
|
-
# @!method initialize(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, require_approval: nil, request_options: {})
|
|
164
|
+
# @!method initialize(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, merchant_legal_business_name: nil, merchant_street_address: nil, recipient_address_city: nil, recipient_address_line1: nil, recipient_address_postal_code: nil, recipient_address_state: nil, require_approval: nil, request_options: {})
|
|
125
165
|
# Some parameter documentations has been truncated, see
|
|
126
166
|
# {Increase::Models::CardPushTransferCreateParams} for more details.
|
|
127
167
|
#
|
|
@@ -157,6 +197,18 @@ module Increase
|
|
|
157
197
|
#
|
|
158
198
|
# @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer.
|
|
159
199
|
#
|
|
200
|
+
# @param merchant_legal_business_name [String] The legal business name of the merchant (generally your business) sending the tr
|
|
201
|
+
#
|
|
202
|
+
# @param merchant_street_address [String] The street address of the merchant (generally your business) sending the transfe
|
|
203
|
+
#
|
|
204
|
+
# @param recipient_address_city [String] The city of the recipient. Required if the card is issued in Canada.
|
|
205
|
+
#
|
|
206
|
+
# @param recipient_address_line1 [String] The first line of the recipient's address. Required if the card is issued in Can
|
|
207
|
+
#
|
|
208
|
+
# @param recipient_address_postal_code [String] The postal code of the recipient. Required if the card is issued in Canada.
|
|
209
|
+
#
|
|
210
|
+
# @param recipient_address_state [String] The state or province of the recipient. Required if the card is issued in Canada
|
|
211
|
+
#
|
|
160
212
|
# @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
|
|
161
213
|
#
|
|
162
214
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
@@ -45,16 +45,6 @@ module Increase
|
|
|
45
45
|
# @return [String, nil]
|
|
46
46
|
optional :debtor_name, String
|
|
47
47
|
|
|
48
|
-
# @!attribute destination_account_number
|
|
49
|
-
#
|
|
50
|
-
# @return [String, nil]
|
|
51
|
-
optional :destination_account_number, String
|
|
52
|
-
|
|
53
|
-
# @!attribute destination_routing_number
|
|
54
|
-
#
|
|
55
|
-
# @return [String, nil]
|
|
56
|
-
optional :destination_routing_number, String
|
|
57
|
-
|
|
58
48
|
# @!attribute external_account_id
|
|
59
49
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
60
50
|
# provided, `account_number` and `routing_number` must be absent.
|
|
@@ -89,7 +79,7 @@ module Increase
|
|
|
89
79
|
# @return [String, nil]
|
|
90
80
|
optional :ultimate_debtor_name, String
|
|
91
81
|
|
|
92
|
-
# @!method initialize(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil,
|
|
82
|
+
# @!method initialize(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil, external_account_id: nil, require_approval: nil, routing_number: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {})
|
|
93
83
|
# Some parameter documentations has been truncated, see
|
|
94
84
|
# {Increase::Models::RealTimePaymentsTransferCreateParams} for more details.
|
|
95
85
|
#
|
|
@@ -105,10 +95,6 @@ module Increase
|
|
|
105
95
|
#
|
|
106
96
|
# @param debtor_name [String] The name of the transfer's sender. If not provided, defaults to the name of the
|
|
107
97
|
#
|
|
108
|
-
# @param destination_account_number [String]
|
|
109
|
-
#
|
|
110
|
-
# @param destination_routing_number [String]
|
|
111
|
-
#
|
|
112
98
|
# @param external_account_id [String] The ID of an External Account to initiate a transfer to. If this parameter is pr
|
|
113
99
|
#
|
|
114
100
|
# @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
|
|
@@ -8,7 +8,7 @@ module Increase
|
|
|
8
8
|
#
|
|
9
9
|
# Create a Card Push Transfer
|
|
10
10
|
#
|
|
11
|
-
# @overload create(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, require_approval: nil, request_options: {})
|
|
11
|
+
# @overload create(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, merchant_legal_business_name: nil, merchant_street_address: nil, recipient_address_city: nil, recipient_address_line1: nil, recipient_address_postal_code: nil, recipient_address_state: nil, require_approval: nil, request_options: {})
|
|
12
12
|
#
|
|
13
13
|
# @param business_application_identifier [Symbol, Increase::Models::CardPushTransferCreateParams::BusinessApplicationIdentifier] The Business Application Identifier describes the type of transaction being perf
|
|
14
14
|
#
|
|
@@ -42,6 +42,18 @@ module Increase
|
|
|
42
42
|
#
|
|
43
43
|
# @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer.
|
|
44
44
|
#
|
|
45
|
+
# @param merchant_legal_business_name [String] The legal business name of the merchant (generally your business) sending the tr
|
|
46
|
+
#
|
|
47
|
+
# @param merchant_street_address [String] The street address of the merchant (generally your business) sending the transfe
|
|
48
|
+
#
|
|
49
|
+
# @param recipient_address_city [String] The city of the recipient. Required if the card is issued in Canada.
|
|
50
|
+
#
|
|
51
|
+
# @param recipient_address_line1 [String] The first line of the recipient's address. Required if the card is issued in Can
|
|
52
|
+
#
|
|
53
|
+
# @param recipient_address_postal_code [String] The postal code of the recipient. Required if the card is issued in Canada.
|
|
54
|
+
#
|
|
55
|
+
# @param recipient_address_state [String] The state or province of the recipient. Required if the card is issued in Canada
|
|
56
|
+
#
|
|
45
57
|
# @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
|
|
46
58
|
#
|
|
47
59
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
|
@@ -8,7 +8,7 @@ module Increase
|
|
|
8
8
|
#
|
|
9
9
|
# Create a Real-Time Payments Transfer
|
|
10
10
|
#
|
|
11
|
-
# @overload create(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil,
|
|
11
|
+
# @overload create(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil, external_account_id: nil, require_approval: nil, routing_number: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {})
|
|
12
12
|
#
|
|
13
13
|
# @param amount [Integer] The transfer amount in USD cents. For Real-Time Payments transfers, must be posi
|
|
14
14
|
#
|
|
@@ -22,10 +22,6 @@ module Increase
|
|
|
22
22
|
#
|
|
23
23
|
# @param debtor_name [String] The name of the transfer's sender. If not provided, defaults to the name of the
|
|
24
24
|
#
|
|
25
|
-
# @param destination_account_number [String]
|
|
26
|
-
#
|
|
27
|
-
# @param destination_routing_number [String]
|
|
28
|
-
#
|
|
29
25
|
# @param external_account_id [String] The ID of an External Account to initiate a transfer to. If this parameter is pr
|
|
30
26
|
#
|
|
31
27
|
# @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
|
data/lib/increase/version.rb
CHANGED
|
@@ -101,6 +101,52 @@ module Increase
|
|
|
101
101
|
sig { returns(String) }
|
|
102
102
|
attr_accessor :source_account_number_id
|
|
103
103
|
|
|
104
|
+
# The legal business name of the merchant (generally your business) sending the
|
|
105
|
+
# transfer. Required if the card is issued in Canada.
|
|
106
|
+
sig { returns(T.nilable(String)) }
|
|
107
|
+
attr_reader :merchant_legal_business_name
|
|
108
|
+
|
|
109
|
+
sig { params(merchant_legal_business_name: String).void }
|
|
110
|
+
attr_writer :merchant_legal_business_name
|
|
111
|
+
|
|
112
|
+
# The street address of the merchant (generally your business) sending the
|
|
113
|
+
# transfer. Required if the card is issued in Canada.
|
|
114
|
+
sig { returns(T.nilable(String)) }
|
|
115
|
+
attr_reader :merchant_street_address
|
|
116
|
+
|
|
117
|
+
sig { params(merchant_street_address: String).void }
|
|
118
|
+
attr_writer :merchant_street_address
|
|
119
|
+
|
|
120
|
+
# The city of the recipient. Required if the card is issued in Canada.
|
|
121
|
+
sig { returns(T.nilable(String)) }
|
|
122
|
+
attr_reader :recipient_address_city
|
|
123
|
+
|
|
124
|
+
sig { params(recipient_address_city: String).void }
|
|
125
|
+
attr_writer :recipient_address_city
|
|
126
|
+
|
|
127
|
+
# The first line of the recipient's address. Required if the card is issued in
|
|
128
|
+
# Canada.
|
|
129
|
+
sig { returns(T.nilable(String)) }
|
|
130
|
+
attr_reader :recipient_address_line1
|
|
131
|
+
|
|
132
|
+
sig { params(recipient_address_line1: String).void }
|
|
133
|
+
attr_writer :recipient_address_line1
|
|
134
|
+
|
|
135
|
+
# The postal code of the recipient. Required if the card is issued in Canada.
|
|
136
|
+
sig { returns(T.nilable(String)) }
|
|
137
|
+
attr_reader :recipient_address_postal_code
|
|
138
|
+
|
|
139
|
+
sig { params(recipient_address_postal_code: String).void }
|
|
140
|
+
attr_writer :recipient_address_postal_code
|
|
141
|
+
|
|
142
|
+
# The state or province of the recipient. Required if the card is issued in
|
|
143
|
+
# Canada.
|
|
144
|
+
sig { returns(T.nilable(String)) }
|
|
145
|
+
attr_reader :recipient_address_state
|
|
146
|
+
|
|
147
|
+
sig { params(recipient_address_state: String).void }
|
|
148
|
+
attr_writer :recipient_address_state
|
|
149
|
+
|
|
104
150
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
105
151
|
sig { returns(T.nilable(T::Boolean)) }
|
|
106
152
|
attr_reader :require_approval
|
|
@@ -128,6 +174,12 @@ module Increase
|
|
|
128
174
|
sender_address_state: String,
|
|
129
175
|
sender_name: String,
|
|
130
176
|
source_account_number_id: String,
|
|
177
|
+
merchant_legal_business_name: String,
|
|
178
|
+
merchant_street_address: String,
|
|
179
|
+
recipient_address_city: String,
|
|
180
|
+
recipient_address_line1: String,
|
|
181
|
+
recipient_address_postal_code: String,
|
|
182
|
+
recipient_address_state: String,
|
|
131
183
|
require_approval: T::Boolean,
|
|
132
184
|
request_options: Increase::RequestOptions::OrHash
|
|
133
185
|
).returns(T.attached_class)
|
|
@@ -176,6 +228,22 @@ module Increase
|
|
|
176
228
|
sender_name:,
|
|
177
229
|
# The identifier of the Account Number from which to send the transfer.
|
|
178
230
|
source_account_number_id:,
|
|
231
|
+
# The legal business name of the merchant (generally your business) sending the
|
|
232
|
+
# transfer. Required if the card is issued in Canada.
|
|
233
|
+
merchant_legal_business_name: nil,
|
|
234
|
+
# The street address of the merchant (generally your business) sending the
|
|
235
|
+
# transfer. Required if the card is issued in Canada.
|
|
236
|
+
merchant_street_address: nil,
|
|
237
|
+
# The city of the recipient. Required if the card is issued in Canada.
|
|
238
|
+
recipient_address_city: nil,
|
|
239
|
+
# The first line of the recipient's address. Required if the card is issued in
|
|
240
|
+
# Canada.
|
|
241
|
+
recipient_address_line1: nil,
|
|
242
|
+
# The postal code of the recipient. Required if the card is issued in Canada.
|
|
243
|
+
recipient_address_postal_code: nil,
|
|
244
|
+
# The state or province of the recipient. Required if the card is issued in
|
|
245
|
+
# Canada.
|
|
246
|
+
recipient_address_state: nil,
|
|
179
247
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
180
248
|
require_approval: nil,
|
|
181
249
|
request_options: {}
|
|
@@ -203,6 +271,12 @@ module Increase
|
|
|
203
271
|
sender_address_state: String,
|
|
204
272
|
sender_name: String,
|
|
205
273
|
source_account_number_id: String,
|
|
274
|
+
merchant_legal_business_name: String,
|
|
275
|
+
merchant_street_address: String,
|
|
276
|
+
recipient_address_city: String,
|
|
277
|
+
recipient_address_line1: String,
|
|
278
|
+
recipient_address_postal_code: String,
|
|
279
|
+
recipient_address_state: String,
|
|
206
280
|
require_approval: T::Boolean,
|
|
207
281
|
request_options: Increase::RequestOptions
|
|
208
282
|
}
|
|
@@ -46,18 +46,6 @@ module Increase
|
|
|
46
46
|
sig { params(debtor_name: String).void }
|
|
47
47
|
attr_writer :debtor_name
|
|
48
48
|
|
|
49
|
-
sig { returns(T.nilable(String)) }
|
|
50
|
-
attr_reader :destination_account_number
|
|
51
|
-
|
|
52
|
-
sig { params(destination_account_number: String).void }
|
|
53
|
-
attr_writer :destination_account_number
|
|
54
|
-
|
|
55
|
-
sig { returns(T.nilable(String)) }
|
|
56
|
-
attr_reader :destination_routing_number
|
|
57
|
-
|
|
58
|
-
sig { params(destination_routing_number: String).void }
|
|
59
|
-
attr_writer :destination_routing_number
|
|
60
|
-
|
|
61
49
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
62
50
|
# provided, `account_number` and `routing_number` must be absent.
|
|
63
51
|
sig { returns(T.nilable(String)) }
|
|
@@ -105,8 +93,6 @@ module Increase
|
|
|
105
93
|
unstructured_remittance_information: String,
|
|
106
94
|
account_number: String,
|
|
107
95
|
debtor_name: String,
|
|
108
|
-
destination_account_number: String,
|
|
109
|
-
destination_routing_number: String,
|
|
110
96
|
external_account_id: String,
|
|
111
97
|
require_approval: T::Boolean,
|
|
112
98
|
routing_number: String,
|
|
@@ -130,8 +116,6 @@ module Increase
|
|
|
130
116
|
# The name of the transfer's sender. If not provided, defaults to the name of the
|
|
131
117
|
# account's entity.
|
|
132
118
|
debtor_name: nil,
|
|
133
|
-
destination_account_number: nil,
|
|
134
|
-
destination_routing_number: nil,
|
|
135
119
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
136
120
|
# provided, `account_number` and `routing_number` must be absent.
|
|
137
121
|
external_account_id: nil,
|
|
@@ -159,8 +143,6 @@ module Increase
|
|
|
159
143
|
unstructured_remittance_information: String,
|
|
160
144
|
account_number: String,
|
|
161
145
|
debtor_name: String,
|
|
162
|
-
destination_account_number: String,
|
|
163
|
-
destination_routing_number: String,
|
|
164
146
|
external_account_id: String,
|
|
165
147
|
require_approval: T::Boolean,
|
|
166
148
|
routing_number: String,
|
|
@@ -24,6 +24,12 @@ module Increase
|
|
|
24
24
|
sender_address_state: String,
|
|
25
25
|
sender_name: String,
|
|
26
26
|
source_account_number_id: String,
|
|
27
|
+
merchant_legal_business_name: String,
|
|
28
|
+
merchant_street_address: String,
|
|
29
|
+
recipient_address_city: String,
|
|
30
|
+
recipient_address_line1: String,
|
|
31
|
+
recipient_address_postal_code: String,
|
|
32
|
+
recipient_address_state: String,
|
|
27
33
|
require_approval: T::Boolean,
|
|
28
34
|
request_options: Increase::RequestOptions::OrHash
|
|
29
35
|
).returns(Increase::CardPushTransfer)
|
|
@@ -72,6 +78,22 @@ module Increase
|
|
|
72
78
|
sender_name:,
|
|
73
79
|
# The identifier of the Account Number from which to send the transfer.
|
|
74
80
|
source_account_number_id:,
|
|
81
|
+
# The legal business name of the merchant (generally your business) sending the
|
|
82
|
+
# transfer. Required if the card is issued in Canada.
|
|
83
|
+
merchant_legal_business_name: nil,
|
|
84
|
+
# The street address of the merchant (generally your business) sending the
|
|
85
|
+
# transfer. Required if the card is issued in Canada.
|
|
86
|
+
merchant_street_address: nil,
|
|
87
|
+
# The city of the recipient. Required if the card is issued in Canada.
|
|
88
|
+
recipient_address_city: nil,
|
|
89
|
+
# The first line of the recipient's address. Required if the card is issued in
|
|
90
|
+
# Canada.
|
|
91
|
+
recipient_address_line1: nil,
|
|
92
|
+
# The postal code of the recipient. Required if the card is issued in Canada.
|
|
93
|
+
recipient_address_postal_code: nil,
|
|
94
|
+
# The state or province of the recipient. Required if the card is issued in
|
|
95
|
+
# Canada.
|
|
96
|
+
recipient_address_state: nil,
|
|
75
97
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
76
98
|
require_approval: nil,
|
|
77
99
|
request_options: {}
|
|
@@ -12,8 +12,6 @@ module Increase
|
|
|
12
12
|
unstructured_remittance_information: String,
|
|
13
13
|
account_number: String,
|
|
14
14
|
debtor_name: String,
|
|
15
|
-
destination_account_number: String,
|
|
16
|
-
destination_routing_number: String,
|
|
17
15
|
external_account_id: String,
|
|
18
16
|
require_approval: T::Boolean,
|
|
19
17
|
routing_number: String,
|
|
@@ -37,8 +35,6 @@ module Increase
|
|
|
37
35
|
# The name of the transfer's sender. If not provided, defaults to the name of the
|
|
38
36
|
# account's entity.
|
|
39
37
|
debtor_name: nil,
|
|
40
|
-
destination_account_number: nil,
|
|
41
|
-
destination_routing_number: nil,
|
|
42
38
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
43
39
|
# provided, `account_number` and `routing_number` must be absent.
|
|
44
40
|
external_account_id: nil,
|
|
@@ -18,6 +18,12 @@ module Increase
|
|
|
18
18
|
sender_address_state: String,
|
|
19
19
|
sender_name: String,
|
|
20
20
|
source_account_number_id: String,
|
|
21
|
+
merchant_legal_business_name: String,
|
|
22
|
+
merchant_street_address: String,
|
|
23
|
+
recipient_address_city: String,
|
|
24
|
+
:recipient_address_line1 => String,
|
|
25
|
+
recipient_address_postal_code: String,
|
|
26
|
+
recipient_address_state: String,
|
|
21
27
|
require_approval: bool
|
|
22
28
|
}
|
|
23
29
|
& Increase::Internal::Type::request_parameters
|
|
@@ -58,6 +64,30 @@ module Increase
|
|
|
58
64
|
|
|
59
65
|
attr_accessor source_account_number_id: String
|
|
60
66
|
|
|
67
|
+
attr_reader merchant_legal_business_name: String?
|
|
68
|
+
|
|
69
|
+
def merchant_legal_business_name=: (String) -> String
|
|
70
|
+
|
|
71
|
+
attr_reader merchant_street_address: String?
|
|
72
|
+
|
|
73
|
+
def merchant_street_address=: (String) -> String
|
|
74
|
+
|
|
75
|
+
attr_reader recipient_address_city: String?
|
|
76
|
+
|
|
77
|
+
def recipient_address_city=: (String) -> String
|
|
78
|
+
|
|
79
|
+
attr_reader recipient_address_line1: String?
|
|
80
|
+
|
|
81
|
+
def recipient_address_line1=: (String) -> String
|
|
82
|
+
|
|
83
|
+
attr_reader recipient_address_postal_code: String?
|
|
84
|
+
|
|
85
|
+
def recipient_address_postal_code=: (String) -> String
|
|
86
|
+
|
|
87
|
+
attr_reader recipient_address_state: String?
|
|
88
|
+
|
|
89
|
+
def recipient_address_state=: (String) -> String
|
|
90
|
+
|
|
61
91
|
attr_reader require_approval: bool?
|
|
62
92
|
|
|
63
93
|
def require_approval=: (bool) -> bool
|
|
@@ -79,6 +109,12 @@ module Increase
|
|
|
79
109
|
sender_address_state: String,
|
|
80
110
|
sender_name: String,
|
|
81
111
|
source_account_number_id: String,
|
|
112
|
+
?merchant_legal_business_name: String,
|
|
113
|
+
?merchant_street_address: String,
|
|
114
|
+
?recipient_address_city: String,
|
|
115
|
+
?recipient_address_line1: String,
|
|
116
|
+
?recipient_address_postal_code: String,
|
|
117
|
+
?recipient_address_state: String,
|
|
82
118
|
?require_approval: bool,
|
|
83
119
|
?request_options: Increase::request_opts
|
|
84
120
|
) -> void
|
|
@@ -100,6 +136,12 @@ module Increase
|
|
|
100
136
|
sender_address_state: String,
|
|
101
137
|
sender_name: String,
|
|
102
138
|
source_account_number_id: String,
|
|
139
|
+
merchant_legal_business_name: String,
|
|
140
|
+
merchant_street_address: String,
|
|
141
|
+
recipient_address_city: String,
|
|
142
|
+
:recipient_address_line1 => String,
|
|
143
|
+
recipient_address_postal_code: String,
|
|
144
|
+
recipient_address_state: String,
|
|
103
145
|
require_approval: bool,
|
|
104
146
|
request_options: Increase::RequestOptions
|
|
105
147
|
}
|
|
@@ -8,8 +8,6 @@ module Increase
|
|
|
8
8
|
unstructured_remittance_information: String,
|
|
9
9
|
account_number: String,
|
|
10
10
|
debtor_name: String,
|
|
11
|
-
destination_account_number: String,
|
|
12
|
-
destination_routing_number: String,
|
|
13
11
|
external_account_id: String,
|
|
14
12
|
require_approval: bool,
|
|
15
13
|
routing_number: String,
|
|
@@ -38,14 +36,6 @@ module Increase
|
|
|
38
36
|
|
|
39
37
|
def debtor_name=: (String) -> String
|
|
40
38
|
|
|
41
|
-
attr_reader destination_account_number: String?
|
|
42
|
-
|
|
43
|
-
def destination_account_number=: (String) -> String
|
|
44
|
-
|
|
45
|
-
attr_reader destination_routing_number: String?
|
|
46
|
-
|
|
47
|
-
def destination_routing_number=: (String) -> String
|
|
48
|
-
|
|
49
39
|
attr_reader external_account_id: String?
|
|
50
40
|
|
|
51
41
|
def external_account_id=: (String) -> String
|
|
@@ -73,8 +63,6 @@ module Increase
|
|
|
73
63
|
unstructured_remittance_information: String,
|
|
74
64
|
?account_number: String,
|
|
75
65
|
?debtor_name: String,
|
|
76
|
-
?destination_account_number: String,
|
|
77
|
-
?destination_routing_number: String,
|
|
78
66
|
?external_account_id: String,
|
|
79
67
|
?require_approval: bool,
|
|
80
68
|
?routing_number: String,
|
|
@@ -90,8 +78,6 @@ module Increase
|
|
|
90
78
|
unstructured_remittance_information: String,
|
|
91
79
|
account_number: String,
|
|
92
80
|
debtor_name: String,
|
|
93
|
-
destination_account_number: String,
|
|
94
|
-
destination_routing_number: String,
|
|
95
81
|
external_account_id: String,
|
|
96
82
|
require_approval: bool,
|
|
97
83
|
routing_number: String,
|
|
@@ -18,6 +18,12 @@ module Increase
|
|
|
18
18
|
sender_address_state: String,
|
|
19
19
|
sender_name: String,
|
|
20
20
|
source_account_number_id: String,
|
|
21
|
+
?merchant_legal_business_name: String,
|
|
22
|
+
?merchant_street_address: String,
|
|
23
|
+
?recipient_address_city: String,
|
|
24
|
+
?recipient_address_line1: String,
|
|
25
|
+
?recipient_address_postal_code: String,
|
|
26
|
+
?recipient_address_state: String,
|
|
21
27
|
?require_approval: bool,
|
|
22
28
|
?request_options: Increase::request_opts
|
|
23
29
|
) -> Increase::CardPushTransfer
|
|
@@ -8,8 +8,6 @@ module Increase
|
|
|
8
8
|
unstructured_remittance_information: String,
|
|
9
9
|
?account_number: String,
|
|
10
10
|
?debtor_name: String,
|
|
11
|
-
?destination_account_number: String,
|
|
12
|
-
?destination_routing_number: String,
|
|
13
11
|
?external_account_id: String,
|
|
14
12
|
?require_approval: bool,
|
|
15
13
|
?routing_number: String,
|