increase 1.45.0 → 1.47.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/internal/type/base_model.rb +2 -2
- data/lib/increase/models/account.rb +13 -3
- data/lib/increase/models/transaction.rb +1 -171
- data/lib/increase/models/transaction_list_params.rb +0 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account.rbi +14 -2
- data/rbi/increase/models/transaction.rbi +0 -303
- data/rbi/increase/models/transaction_list_params.rbi +0 -7
- data/sig/increase/models/account.rbs +5 -0
- data/sig/increase/models/transaction.rbs +0 -129
- data/sig/increase/models/transaction_list_params.rbs +0 -4
- 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: 15c84e9660ac620298c4089187696da8e3ddb9febbe727457b71d907dd6fbc43
|
4
|
+
data.tar.gz: 73bbbc122747b9ee71d55a910840f22049e99ee7cf99432ed3f7cdea6ef73af4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64fbc4e603956e12c5fe3187f544135174fb279718e75956aa39b44ef39c31de3cccd6c6e51519e3d65f97026d7c892ae8b5de42d5415d3311d28cac444e61fd
|
7
|
+
data.tar.gz: e6950f39c4f83508456af1ba66ceec1713afeaa2ec727b9772c05a18d96d2f9d3459022446a1b0a12b12a6a7839fff1dac03954f87f7dc24652653a2ec8b7367
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.47.0 (2025-08-22)
|
4
|
+
|
5
|
+
Full Changelog: [v1.46.0...v1.47.0](https://github.com/Increase/increase-ruby/compare/v1.46.0...v1.47.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([bde025b](https://github.com/Increase/increase-ruby/commit/bde025b5a1b255929e2a409fd6581d2db4f0ffe0))
|
10
|
+
|
11
|
+
## 1.46.0 (2025-08-22)
|
12
|
+
|
13
|
+
Full Changelog: [v1.45.0...v1.46.0](https://github.com/Increase/increase-ruby/compare/v1.45.0...v1.46.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([ebaaba1](https://github.com/Increase/increase-ruby/commit/ebaaba1df36545cf5983eed1efa47bc4576ef690))
|
18
|
+
|
3
19
|
## 1.45.0 (2025-08-21)
|
4
20
|
|
5
21
|
Full Changelog: [v1.44.0...v1.45.0](https://github.com/Increase/increase-ruby/compare/v1.44.0...v1.45.0)
|
data/README.md
CHANGED
@@ -441,8 +441,8 @@ module Increase
|
|
441
441
|
# # `account` is a `Increase::Account`
|
442
442
|
# account => {
|
443
443
|
# id: id,
|
444
|
-
#
|
445
|
-
#
|
444
|
+
# account_revenue_rate: account_revenue_rate,
|
445
|
+
# bank: bank
|
446
446
|
# }
|
447
447
|
def deconstruct_keys(keys)
|
448
448
|
(keys || self.class.known_fields.keys)
|
@@ -10,6 +10,14 @@ module Increase
|
|
10
10
|
# @return [String]
|
11
11
|
required :id, String
|
12
12
|
|
13
|
+
# @!attribute account_revenue_rate
|
14
|
+
# The account revenue rate currently being earned on the account, as a string
|
15
|
+
# containing a decimal number. For example, a 1% account revenue rate would be
|
16
|
+
# represented as "0.01".
|
17
|
+
#
|
18
|
+
# @return [String, nil]
|
19
|
+
required :account_revenue_rate, String, nil?: true
|
20
|
+
|
13
21
|
# @!attribute bank
|
14
22
|
# The bank the Account is with.
|
15
23
|
#
|
@@ -73,7 +81,7 @@ module Increase
|
|
73
81
|
required :interest_accrued_at, Date, nil?: true
|
74
82
|
|
75
83
|
# @!attribute interest_rate
|
76
|
-
# The
|
84
|
+
# The interest rate currently being earned on the account, as a string containing
|
77
85
|
# a decimal number. For example, a 1% interest rate would be represented as
|
78
86
|
# "0.01".
|
79
87
|
#
|
@@ -106,7 +114,7 @@ module Increase
|
|
106
114
|
# @return [Symbol, Increase::Models::Account::Type]
|
107
115
|
required :type, enum: -> { Increase::Account::Type }
|
108
116
|
|
109
|
-
# @!method initialize(id:, bank:, closed_at:, created_at:, currency:, entity_id:, idempotency_key:, informational_entity_id:, interest_accrued:, interest_accrued_at:, interest_rate:, name:, program_id:, status:, type:)
|
117
|
+
# @!method initialize(id:, account_revenue_rate:, bank:, closed_at:, created_at:, currency:, entity_id:, idempotency_key:, informational_entity_id:, interest_accrued:, interest_accrued_at:, interest_rate:, name:, program_id:, status:, type:)
|
110
118
|
# Some parameter documentations has been truncated, see
|
111
119
|
# {Increase::Models::Account} for more details.
|
112
120
|
#
|
@@ -115,6 +123,8 @@ module Increase
|
|
115
123
|
#
|
116
124
|
# @param id [String] The Account identifier.
|
117
125
|
#
|
126
|
+
# @param account_revenue_rate [String, nil] The account revenue rate currently being earned on the account, as a string cont
|
127
|
+
#
|
118
128
|
# @param bank [Symbol, Increase::Models::Account::Bank] The bank the Account is with.
|
119
129
|
#
|
120
130
|
# @param closed_at [Time, nil] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Account
|
@@ -133,7 +143,7 @@ module Increase
|
|
133
143
|
#
|
134
144
|
# @param interest_accrued_at [Date, nil] The latest [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which inte
|
135
145
|
#
|
136
|
-
# @param interest_rate [String] The
|
146
|
+
# @param interest_rate [String] The interest rate currently being earned on the account, as a string containing
|
137
147
|
#
|
138
148
|
# @param name [String] The name you choose for the Account.
|
139
149
|
#
|
@@ -389,16 +389,6 @@ module Increase
|
|
389
389
|
-> { Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation },
|
390
390
|
nil?: true
|
391
391
|
|
392
|
-
# @!attribute inbound_real_time_payments_transfer_decline
|
393
|
-
# An Inbound Real-Time Payments Transfer Decline object. This field will be
|
394
|
-
# present in the JSON response if and only if `category` is equal to
|
395
|
-
# `inbound_real_time_payments_transfer_decline`.
|
396
|
-
#
|
397
|
-
# @return [Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline, nil]
|
398
|
-
required :inbound_real_time_payments_transfer_decline,
|
399
|
-
-> { Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline },
|
400
|
-
nil?: true
|
401
|
-
|
402
392
|
# @!attribute inbound_wire_reversal
|
403
393
|
# An Inbound Wire Reversal object. This field will be present in the JSON response
|
404
394
|
# if and only if `category` is equal to `inbound_wire_reversal`. An Inbound Wire
|
@@ -504,7 +494,7 @@ module Increase
|
|
504
494
|
},
|
505
495
|
nil?: true
|
506
496
|
|
507
|
-
# @!method initialize(account_transfer_intention:, ach_transfer_intention:, ach_transfer_rejection:, ach_transfer_return:, card_dispute_acceptance:, card_dispute_financial:, card_dispute_loss:, card_push_transfer_acceptance:, card_refund:, card_revenue_payment:, card_settlement:, cashback_payment:, category:, check_deposit_acceptance:, check_deposit_return:, check_transfer_deposit:, fee_payment:, inbound_ach_transfer:, inbound_ach_transfer_return_intention:, inbound_check_adjustment:, inbound_check_deposit_return_intention:, inbound_real_time_payments_transfer_confirmation:,
|
497
|
+
# @!method initialize(account_transfer_intention:, ach_transfer_intention:, ach_transfer_rejection:, ach_transfer_return:, card_dispute_acceptance:, card_dispute_financial:, card_dispute_loss:, card_push_transfer_acceptance:, card_refund:, card_revenue_payment:, card_settlement:, cashback_payment:, category:, check_deposit_acceptance:, check_deposit_return:, check_transfer_deposit:, fee_payment:, inbound_ach_transfer:, inbound_ach_transfer_return_intention:, inbound_check_adjustment:, inbound_check_deposit_return_intention:, inbound_real_time_payments_transfer_confirmation:, inbound_wire_reversal:, inbound_wire_transfer:, inbound_wire_transfer_reversal:, interest_payment:, internal_source:, other:, real_time_payments_transfer_acknowledgement:, sample_funds:, swift_transfer_intention:, swift_transfer_return:, wire_transfer_intention:)
|
508
498
|
# Some parameter documentations has been truncated, see
|
509
499
|
# {Increase::Models::Transaction::Source} for more details.
|
510
500
|
#
|
@@ -557,8 +547,6 @@ module Increase
|
|
557
547
|
#
|
558
548
|
# @param inbound_real_time_payments_transfer_confirmation [Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation, nil] An Inbound Real-Time Payments Transfer Confirmation object. This field will be p
|
559
549
|
#
|
560
|
-
# @param inbound_real_time_payments_transfer_decline [Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline, nil] An Inbound Real-Time Payments Transfer Decline object. This field will be presen
|
561
|
-
#
|
562
550
|
# @param inbound_wire_reversal [Increase::Models::Transaction::Source::InboundWireReversal, nil] An Inbound Wire Reversal object. This field will be present in the JSON response
|
563
551
|
#
|
564
552
|
# @param inbound_wire_transfer [Increase::Models::Transaction::Source::InboundWireTransfer, nil] An Inbound Wire Transfer Intention object. This field will be present in the JSO
|
@@ -4211,9 +4199,6 @@ module Increase
|
|
4211
4199
|
# Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
|
4212
4200
|
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION = :inbound_real_time_payments_transfer_confirmation
|
4213
4201
|
|
4214
|
-
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
4215
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE = :inbound_real_time_payments_transfer_decline
|
4216
|
-
|
4217
4202
|
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
4218
4203
|
INBOUND_WIRE_REVERSAL = :inbound_wire_reversal
|
4219
4204
|
|
@@ -5096,161 +5081,6 @@ module Increase
|
|
5096
5081
|
end
|
5097
5082
|
end
|
5098
5083
|
|
5099
|
-
# @see Increase::Models::Transaction::Source#inbound_real_time_payments_transfer_decline
|
5100
|
-
class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
|
5101
|
-
# @!attribute amount
|
5102
|
-
# The declined amount in the minor unit of the destination account currency. For
|
5103
|
-
# dollars, for example, this is cents.
|
5104
|
-
#
|
5105
|
-
# @return [Integer]
|
5106
|
-
required :amount, Integer
|
5107
|
-
|
5108
|
-
# @!attribute creditor_name
|
5109
|
-
# The name the sender of the transfer specified as the recipient of the transfer.
|
5110
|
-
#
|
5111
|
-
# @return [String]
|
5112
|
-
required :creditor_name, String
|
5113
|
-
|
5114
|
-
# @!attribute currency
|
5115
|
-
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
|
5116
|
-
# transfer's currency. This will always be "USD" for a Real-Time Payments
|
5117
|
-
# transfer.
|
5118
|
-
#
|
5119
|
-
# @return [Symbol, Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency]
|
5120
|
-
required :currency,
|
5121
|
-
enum: -> { Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency }
|
5122
|
-
|
5123
|
-
# @!attribute debtor_account_number
|
5124
|
-
# The account number of the account that sent the transfer.
|
5125
|
-
#
|
5126
|
-
# @return [String]
|
5127
|
-
required :debtor_account_number, String
|
5128
|
-
|
5129
|
-
# @!attribute debtor_name
|
5130
|
-
# The name provided by the sender of the transfer.
|
5131
|
-
#
|
5132
|
-
# @return [String]
|
5133
|
-
required :debtor_name, String
|
5134
|
-
|
5135
|
-
# @!attribute debtor_routing_number
|
5136
|
-
# The routing number of the account that sent the transfer.
|
5137
|
-
#
|
5138
|
-
# @return [String]
|
5139
|
-
required :debtor_routing_number, String
|
5140
|
-
|
5141
|
-
# @!attribute reason
|
5142
|
-
# Why the transfer was declined.
|
5143
|
-
#
|
5144
|
-
# @return [Symbol, Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason]
|
5145
|
-
required :reason,
|
5146
|
-
enum: -> { Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason }
|
5147
|
-
|
5148
|
-
# @!attribute remittance_information
|
5149
|
-
# Additional information included with the transfer.
|
5150
|
-
#
|
5151
|
-
# @return [String, nil]
|
5152
|
-
required :remittance_information, String, nil?: true
|
5153
|
-
|
5154
|
-
# @!attribute transaction_identification
|
5155
|
-
# The Real-Time Payments network identification of the declined transfer.
|
5156
|
-
#
|
5157
|
-
# @return [String]
|
5158
|
-
required :transaction_identification, String
|
5159
|
-
|
5160
|
-
# @!attribute transfer_id
|
5161
|
-
# The identifier of the Real-Time Payments Transfer that led to this Transaction.
|
5162
|
-
#
|
5163
|
-
# @return [String]
|
5164
|
-
required :transfer_id, String
|
5165
|
-
|
5166
|
-
# @!method initialize(amount:, creditor_name:, currency:, debtor_account_number:, debtor_name:, debtor_routing_number:, reason:, remittance_information:, transaction_identification:, transfer_id:)
|
5167
|
-
# Some parameter documentations has been truncated, see
|
5168
|
-
# {Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline}
|
5169
|
-
# for more details.
|
5170
|
-
#
|
5171
|
-
# An Inbound Real-Time Payments Transfer Decline object. This field will be
|
5172
|
-
# present in the JSON response if and only if `category` is equal to
|
5173
|
-
# `inbound_real_time_payments_transfer_decline`.
|
5174
|
-
#
|
5175
|
-
# @param amount [Integer] The declined amount in the minor unit of the destination account currency. For d
|
5176
|
-
#
|
5177
|
-
# @param creditor_name [String] The name the sender of the transfer specified as the recipient of the transfer.
|
5178
|
-
#
|
5179
|
-
# @param currency [Symbol, Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined tran
|
5180
|
-
#
|
5181
|
-
# @param debtor_account_number [String] The account number of the account that sent the transfer.
|
5182
|
-
#
|
5183
|
-
# @param debtor_name [String] The name provided by the sender of the transfer.
|
5184
|
-
#
|
5185
|
-
# @param debtor_routing_number [String] The routing number of the account that sent the transfer.
|
5186
|
-
#
|
5187
|
-
# @param reason [Symbol, Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason] Why the transfer was declined.
|
5188
|
-
#
|
5189
|
-
# @param remittance_information [String, nil] Additional information included with the transfer.
|
5190
|
-
#
|
5191
|
-
# @param transaction_identification [String] The Real-Time Payments network identification of the declined transfer.
|
5192
|
-
#
|
5193
|
-
# @param transfer_id [String] The identifier of the Real-Time Payments Transfer that led to this Transaction.
|
5194
|
-
|
5195
|
-
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
|
5196
|
-
# transfer's currency. This will always be "USD" for a Real-Time Payments
|
5197
|
-
# transfer.
|
5198
|
-
#
|
5199
|
-
# @see Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline#currency
|
5200
|
-
module Currency
|
5201
|
-
extend Increase::Internal::Type::Enum
|
5202
|
-
|
5203
|
-
# Canadian Dollar (CAD)
|
5204
|
-
CAD = :CAD
|
5205
|
-
|
5206
|
-
# Swiss Franc (CHF)
|
5207
|
-
CHF = :CHF
|
5208
|
-
|
5209
|
-
# Euro (EUR)
|
5210
|
-
EUR = :EUR
|
5211
|
-
|
5212
|
-
# British Pound (GBP)
|
5213
|
-
GBP = :GBP
|
5214
|
-
|
5215
|
-
# Japanese Yen (JPY)
|
5216
|
-
JPY = :JPY
|
5217
|
-
|
5218
|
-
# US Dollar (USD)
|
5219
|
-
USD = :USD
|
5220
|
-
|
5221
|
-
# @!method self.values
|
5222
|
-
# @return [Array<Symbol>]
|
5223
|
-
end
|
5224
|
-
|
5225
|
-
# Why the transfer was declined.
|
5226
|
-
#
|
5227
|
-
# @see Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline#reason
|
5228
|
-
module Reason
|
5229
|
-
extend Increase::Internal::Type::Enum
|
5230
|
-
|
5231
|
-
# The account number is canceled.
|
5232
|
-
ACCOUNT_NUMBER_CANCELED = :account_number_canceled
|
5233
|
-
|
5234
|
-
# The account number is disabled.
|
5235
|
-
ACCOUNT_NUMBER_DISABLED = :account_number_disabled
|
5236
|
-
|
5237
|
-
# Your account is restricted.
|
5238
|
-
ACCOUNT_RESTRICTED = :account_restricted
|
5239
|
-
|
5240
|
-
# Your account is inactive.
|
5241
|
-
GROUP_LOCKED = :group_locked
|
5242
|
-
|
5243
|
-
# The account's entity is not active.
|
5244
|
-
ENTITY_NOT_ACTIVE = :entity_not_active
|
5245
|
-
|
5246
|
-
# Your account is not enabled to receive Real-Time Payments transfers.
|
5247
|
-
REAL_TIME_PAYMENTS_NOT_ENABLED = :real_time_payments_not_enabled
|
5248
|
-
|
5249
|
-
# @!method self.values
|
5250
|
-
# @return [Array<Symbol>]
|
5251
|
-
end
|
5252
|
-
end
|
5253
|
-
|
5254
5084
|
# @see Increase::Models::Transaction::Source#inbound_wire_reversal
|
5255
5085
|
class InboundWireReversal < Increase::Internal::Type::BaseModel
|
5256
5086
|
# @!attribute amount
|
@@ -142,9 +142,6 @@ module Increase
|
|
142
142
|
# Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
|
143
143
|
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION = :inbound_real_time_payments_transfer_confirmation
|
144
144
|
|
145
|
-
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
146
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE = :inbound_real_time_payments_transfer_decline
|
147
|
-
|
148
145
|
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
149
146
|
INBOUND_WIRE_REVERSAL = :inbound_wire_reversal
|
150
147
|
|
data/lib/increase/version.rb
CHANGED
@@ -10,6 +10,12 @@ module Increase
|
|
10
10
|
sig { returns(String) }
|
11
11
|
attr_accessor :id
|
12
12
|
|
13
|
+
# The account revenue rate currently being earned on the account, as a string
|
14
|
+
# containing a decimal number. For example, a 1% account revenue rate would be
|
15
|
+
# represented as "0.01".
|
16
|
+
sig { returns(T.nilable(String)) }
|
17
|
+
attr_accessor :account_revenue_rate
|
18
|
+
|
13
19
|
# The bank the Account is with.
|
14
20
|
sig { returns(Increase::Account::Bank::TaggedSymbol) }
|
15
21
|
attr_accessor :bank
|
@@ -54,7 +60,7 @@ module Increase
|
|
54
60
|
sig { returns(T.nilable(Date)) }
|
55
61
|
attr_accessor :interest_accrued_at
|
56
62
|
|
57
|
-
# The
|
63
|
+
# The interest rate currently being earned on the account, as a string containing
|
58
64
|
# a decimal number. For example, a 1% interest rate would be represented as
|
59
65
|
# "0.01".
|
60
66
|
sig { returns(String) }
|
@@ -83,6 +89,7 @@ module Increase
|
|
83
89
|
sig do
|
84
90
|
params(
|
85
91
|
id: String,
|
92
|
+
account_revenue_rate: T.nilable(String),
|
86
93
|
bank: Increase::Account::Bank::OrSymbol,
|
87
94
|
closed_at: T.nilable(Time),
|
88
95
|
created_at: Time,
|
@@ -102,6 +109,10 @@ module Increase
|
|
102
109
|
def self.new(
|
103
110
|
# The Account identifier.
|
104
111
|
id:,
|
112
|
+
# The account revenue rate currently being earned on the account, as a string
|
113
|
+
# containing a decimal number. For example, a 1% account revenue rate would be
|
114
|
+
# represented as "0.01".
|
115
|
+
account_revenue_rate:,
|
105
116
|
# The bank the Account is with.
|
106
117
|
bank:,
|
107
118
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Account
|
@@ -128,7 +139,7 @@ module Increase
|
|
128
139
|
# The latest [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which
|
129
140
|
# interest was accrued.
|
130
141
|
interest_accrued_at:,
|
131
|
-
# The
|
142
|
+
# The interest rate currently being earned on the account, as a string containing
|
132
143
|
# a decimal number. For example, a 1% interest rate would be represented as
|
133
144
|
# "0.01".
|
134
145
|
interest_rate:,
|
@@ -149,6 +160,7 @@ module Increase
|
|
149
160
|
override.returns(
|
150
161
|
{
|
151
162
|
id: String,
|
163
|
+
account_revenue_rate: T.nilable(String),
|
152
164
|
bank: Increase::Account::Bank::TaggedSymbol,
|
153
165
|
closed_at: T.nilable(Time),
|
154
166
|
created_at: Time,
|
@@ -630,28 +630,6 @@ module Increase
|
|
630
630
|
end
|
631
631
|
attr_writer :inbound_real_time_payments_transfer_confirmation
|
632
632
|
|
633
|
-
# An Inbound Real-Time Payments Transfer Decline object. This field will be
|
634
|
-
# present in the JSON response if and only if `category` is equal to
|
635
|
-
# `inbound_real_time_payments_transfer_decline`.
|
636
|
-
sig do
|
637
|
-
returns(
|
638
|
-
T.nilable(
|
639
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline
|
640
|
-
)
|
641
|
-
)
|
642
|
-
end
|
643
|
-
attr_reader :inbound_real_time_payments_transfer_decline
|
644
|
-
|
645
|
-
sig do
|
646
|
-
params(
|
647
|
-
inbound_real_time_payments_transfer_decline:
|
648
|
-
T.nilable(
|
649
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::OrHash
|
650
|
-
)
|
651
|
-
).void
|
652
|
-
end
|
653
|
-
attr_writer :inbound_real_time_payments_transfer_decline
|
654
|
-
|
655
633
|
# An Inbound Wire Reversal object. This field will be present in the JSON response
|
656
634
|
# if and only if `category` is equal to `inbound_wire_reversal`. An Inbound Wire
|
657
635
|
# Reversal represents a reversal of a wire transfer that was initiated via
|
@@ -930,10 +908,6 @@ module Increase
|
|
930
908
|
T.nilable(
|
931
909
|
Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation::OrHash
|
932
910
|
),
|
933
|
-
inbound_real_time_payments_transfer_decline:
|
934
|
-
T.nilable(
|
935
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::OrHash
|
936
|
-
),
|
937
911
|
inbound_wire_reversal:
|
938
912
|
T.nilable(
|
939
913
|
Increase::Transaction::Source::InboundWireReversal::OrHash
|
@@ -1085,10 +1059,6 @@ module Increase
|
|
1085
1059
|
# Payments Transfer Confirmation is created when a Real-Time Payments transfer is
|
1086
1060
|
# initiated at another bank and received by Increase.
|
1087
1061
|
inbound_real_time_payments_transfer_confirmation:,
|
1088
|
-
# An Inbound Real-Time Payments Transfer Decline object. This field will be
|
1089
|
-
# present in the JSON response if and only if `category` is equal to
|
1090
|
-
# `inbound_real_time_payments_transfer_decline`.
|
1091
|
-
inbound_real_time_payments_transfer_decline:,
|
1092
1062
|
# An Inbound Wire Reversal object. This field will be present in the JSON response
|
1093
1063
|
# if and only if `category` is equal to `inbound_wire_reversal`. An Inbound Wire
|
1094
1064
|
# Reversal represents a reversal of a wire transfer that was initiated via
|
@@ -1201,10 +1171,6 @@ module Increase
|
|
1201
1171
|
T.nilable(
|
1202
1172
|
Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation
|
1203
1173
|
),
|
1204
|
-
inbound_real_time_payments_transfer_decline:
|
1205
|
-
T.nilable(
|
1206
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline
|
1207
|
-
),
|
1208
1174
|
inbound_wire_reversal:
|
1209
1175
|
T.nilable(Increase::Transaction::Source::InboundWireReversal),
|
1210
1176
|
inbound_wire_transfer:
|
@@ -7841,13 +7807,6 @@ module Increase
|
|
7841
7807
|
Increase::Transaction::Source::Category::TaggedSymbol
|
7842
7808
|
)
|
7843
7809
|
|
7844
|
-
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
7845
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE =
|
7846
|
-
T.let(
|
7847
|
-
:inbound_real_time_payments_transfer_decline,
|
7848
|
-
Increase::Transaction::Source::Category::TaggedSymbol
|
7849
|
-
)
|
7850
|
-
|
7851
7810
|
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
7852
7811
|
INBOUND_WIRE_REVERSAL =
|
7853
7812
|
T.let(
|
@@ -9474,268 +9433,6 @@ module Increase
|
|
9474
9433
|
end
|
9475
9434
|
end
|
9476
9435
|
|
9477
|
-
class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
|
9478
|
-
OrHash =
|
9479
|
-
T.type_alias do
|
9480
|
-
T.any(
|
9481
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline,
|
9482
|
-
Increase::Internal::AnyHash
|
9483
|
-
)
|
9484
|
-
end
|
9485
|
-
|
9486
|
-
# The declined amount in the minor unit of the destination account currency. For
|
9487
|
-
# dollars, for example, this is cents.
|
9488
|
-
sig { returns(Integer) }
|
9489
|
-
attr_accessor :amount
|
9490
|
-
|
9491
|
-
# The name the sender of the transfer specified as the recipient of the transfer.
|
9492
|
-
sig { returns(String) }
|
9493
|
-
attr_accessor :creditor_name
|
9494
|
-
|
9495
|
-
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
|
9496
|
-
# transfer's currency. This will always be "USD" for a Real-Time Payments
|
9497
|
-
# transfer.
|
9498
|
-
sig do
|
9499
|
-
returns(
|
9500
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
|
9501
|
-
)
|
9502
|
-
end
|
9503
|
-
attr_accessor :currency
|
9504
|
-
|
9505
|
-
# The account number of the account that sent the transfer.
|
9506
|
-
sig { returns(String) }
|
9507
|
-
attr_accessor :debtor_account_number
|
9508
|
-
|
9509
|
-
# The name provided by the sender of the transfer.
|
9510
|
-
sig { returns(String) }
|
9511
|
-
attr_accessor :debtor_name
|
9512
|
-
|
9513
|
-
# The routing number of the account that sent the transfer.
|
9514
|
-
sig { returns(String) }
|
9515
|
-
attr_accessor :debtor_routing_number
|
9516
|
-
|
9517
|
-
# Why the transfer was declined.
|
9518
|
-
sig do
|
9519
|
-
returns(
|
9520
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
9521
|
-
)
|
9522
|
-
end
|
9523
|
-
attr_accessor :reason
|
9524
|
-
|
9525
|
-
# Additional information included with the transfer.
|
9526
|
-
sig { returns(T.nilable(String)) }
|
9527
|
-
attr_accessor :remittance_information
|
9528
|
-
|
9529
|
-
# The Real-Time Payments network identification of the declined transfer.
|
9530
|
-
sig { returns(String) }
|
9531
|
-
attr_accessor :transaction_identification
|
9532
|
-
|
9533
|
-
# The identifier of the Real-Time Payments Transfer that led to this Transaction.
|
9534
|
-
sig { returns(String) }
|
9535
|
-
attr_accessor :transfer_id
|
9536
|
-
|
9537
|
-
# An Inbound Real-Time Payments Transfer Decline object. This field will be
|
9538
|
-
# present in the JSON response if and only if `category` is equal to
|
9539
|
-
# `inbound_real_time_payments_transfer_decline`.
|
9540
|
-
sig do
|
9541
|
-
params(
|
9542
|
-
amount: Integer,
|
9543
|
-
creditor_name: String,
|
9544
|
-
currency:
|
9545
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::OrSymbol,
|
9546
|
-
debtor_account_number: String,
|
9547
|
-
debtor_name: String,
|
9548
|
-
debtor_routing_number: String,
|
9549
|
-
reason:
|
9550
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::OrSymbol,
|
9551
|
-
remittance_information: T.nilable(String),
|
9552
|
-
transaction_identification: String,
|
9553
|
-
transfer_id: String
|
9554
|
-
).returns(T.attached_class)
|
9555
|
-
end
|
9556
|
-
def self.new(
|
9557
|
-
# The declined amount in the minor unit of the destination account currency. For
|
9558
|
-
# dollars, for example, this is cents.
|
9559
|
-
amount:,
|
9560
|
-
# The name the sender of the transfer specified as the recipient of the transfer.
|
9561
|
-
creditor_name:,
|
9562
|
-
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
|
9563
|
-
# transfer's currency. This will always be "USD" for a Real-Time Payments
|
9564
|
-
# transfer.
|
9565
|
-
currency:,
|
9566
|
-
# The account number of the account that sent the transfer.
|
9567
|
-
debtor_account_number:,
|
9568
|
-
# The name provided by the sender of the transfer.
|
9569
|
-
debtor_name:,
|
9570
|
-
# The routing number of the account that sent the transfer.
|
9571
|
-
debtor_routing_number:,
|
9572
|
-
# Why the transfer was declined.
|
9573
|
-
reason:,
|
9574
|
-
# Additional information included with the transfer.
|
9575
|
-
remittance_information:,
|
9576
|
-
# The Real-Time Payments network identification of the declined transfer.
|
9577
|
-
transaction_identification:,
|
9578
|
-
# The identifier of the Real-Time Payments Transfer that led to this Transaction.
|
9579
|
-
transfer_id:
|
9580
|
-
)
|
9581
|
-
end
|
9582
|
-
|
9583
|
-
sig do
|
9584
|
-
override.returns(
|
9585
|
-
{
|
9586
|
-
amount: Integer,
|
9587
|
-
creditor_name: String,
|
9588
|
-
currency:
|
9589
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol,
|
9590
|
-
debtor_account_number: String,
|
9591
|
-
debtor_name: String,
|
9592
|
-
debtor_routing_number: String,
|
9593
|
-
reason:
|
9594
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol,
|
9595
|
-
remittance_information: T.nilable(String),
|
9596
|
-
transaction_identification: String,
|
9597
|
-
transfer_id: String
|
9598
|
-
}
|
9599
|
-
)
|
9600
|
-
end
|
9601
|
-
def to_hash
|
9602
|
-
end
|
9603
|
-
|
9604
|
-
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
|
9605
|
-
# transfer's currency. This will always be "USD" for a Real-Time Payments
|
9606
|
-
# transfer.
|
9607
|
-
module Currency
|
9608
|
-
extend Increase::Internal::Type::Enum
|
9609
|
-
|
9610
|
-
TaggedSymbol =
|
9611
|
-
T.type_alias do
|
9612
|
-
T.all(
|
9613
|
-
Symbol,
|
9614
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency
|
9615
|
-
)
|
9616
|
-
end
|
9617
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
9618
|
-
|
9619
|
-
# Canadian Dollar (CAD)
|
9620
|
-
CAD =
|
9621
|
-
T.let(
|
9622
|
-
:CAD,
|
9623
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
|
9624
|
-
)
|
9625
|
-
|
9626
|
-
# Swiss Franc (CHF)
|
9627
|
-
CHF =
|
9628
|
-
T.let(
|
9629
|
-
:CHF,
|
9630
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
|
9631
|
-
)
|
9632
|
-
|
9633
|
-
# Euro (EUR)
|
9634
|
-
EUR =
|
9635
|
-
T.let(
|
9636
|
-
:EUR,
|
9637
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
|
9638
|
-
)
|
9639
|
-
|
9640
|
-
# British Pound (GBP)
|
9641
|
-
GBP =
|
9642
|
-
T.let(
|
9643
|
-
:GBP,
|
9644
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
|
9645
|
-
)
|
9646
|
-
|
9647
|
-
# Japanese Yen (JPY)
|
9648
|
-
JPY =
|
9649
|
-
T.let(
|
9650
|
-
:JPY,
|
9651
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
|
9652
|
-
)
|
9653
|
-
|
9654
|
-
# US Dollar (USD)
|
9655
|
-
USD =
|
9656
|
-
T.let(
|
9657
|
-
:USD,
|
9658
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
|
9659
|
-
)
|
9660
|
-
|
9661
|
-
sig do
|
9662
|
-
override.returns(
|
9663
|
-
T::Array[
|
9664
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
|
9665
|
-
]
|
9666
|
-
)
|
9667
|
-
end
|
9668
|
-
def self.values
|
9669
|
-
end
|
9670
|
-
end
|
9671
|
-
|
9672
|
-
# Why the transfer was declined.
|
9673
|
-
module Reason
|
9674
|
-
extend Increase::Internal::Type::Enum
|
9675
|
-
|
9676
|
-
TaggedSymbol =
|
9677
|
-
T.type_alias do
|
9678
|
-
T.all(
|
9679
|
-
Symbol,
|
9680
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason
|
9681
|
-
)
|
9682
|
-
end
|
9683
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
9684
|
-
|
9685
|
-
# The account number is canceled.
|
9686
|
-
ACCOUNT_NUMBER_CANCELED =
|
9687
|
-
T.let(
|
9688
|
-
:account_number_canceled,
|
9689
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
9690
|
-
)
|
9691
|
-
|
9692
|
-
# The account number is disabled.
|
9693
|
-
ACCOUNT_NUMBER_DISABLED =
|
9694
|
-
T.let(
|
9695
|
-
:account_number_disabled,
|
9696
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
9697
|
-
)
|
9698
|
-
|
9699
|
-
# Your account is restricted.
|
9700
|
-
ACCOUNT_RESTRICTED =
|
9701
|
-
T.let(
|
9702
|
-
:account_restricted,
|
9703
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
9704
|
-
)
|
9705
|
-
|
9706
|
-
# Your account is inactive.
|
9707
|
-
GROUP_LOCKED =
|
9708
|
-
T.let(
|
9709
|
-
:group_locked,
|
9710
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
9711
|
-
)
|
9712
|
-
|
9713
|
-
# The account's entity is not active.
|
9714
|
-
ENTITY_NOT_ACTIVE =
|
9715
|
-
T.let(
|
9716
|
-
:entity_not_active,
|
9717
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
9718
|
-
)
|
9719
|
-
|
9720
|
-
# Your account is not enabled to receive Real-Time Payments transfers.
|
9721
|
-
REAL_TIME_PAYMENTS_NOT_ENABLED =
|
9722
|
-
T.let(
|
9723
|
-
:real_time_payments_not_enabled,
|
9724
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
9725
|
-
)
|
9726
|
-
|
9727
|
-
sig do
|
9728
|
-
override.returns(
|
9729
|
-
T::Array[
|
9730
|
-
Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
|
9731
|
-
]
|
9732
|
-
)
|
9733
|
-
end
|
9734
|
-
def self.values
|
9735
|
-
end
|
9736
|
-
end
|
9737
|
-
end
|
9738
|
-
|
9739
9436
|
class InboundWireReversal < Increase::Internal::Type::BaseModel
|
9740
9437
|
OrHash =
|
9741
9438
|
T.type_alias do
|
@@ -306,13 +306,6 @@ module Increase
|
|
306
306
|
Increase::TransactionListParams::Category::In::TaggedSymbol
|
307
307
|
)
|
308
308
|
|
309
|
-
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
310
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE =
|
311
|
-
T.let(
|
312
|
-
:inbound_real_time_payments_transfer_decline,
|
313
|
-
Increase::TransactionListParams::Category::In::TaggedSymbol
|
314
|
-
)
|
315
|
-
|
316
309
|
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
317
310
|
INBOUND_WIRE_REVERSAL =
|
318
311
|
T.let(
|
@@ -3,6 +3,7 @@ module Increase
|
|
3
3
|
type account =
|
4
4
|
{
|
5
5
|
id: String,
|
6
|
+
account_revenue_rate: String?,
|
6
7
|
bank: Increase::Models::Account::bank,
|
7
8
|
closed_at: Time?,
|
8
9
|
created_at: Time,
|
@@ -22,6 +23,8 @@ module Increase
|
|
22
23
|
class Account < Increase::Internal::Type::BaseModel
|
23
24
|
attr_accessor id: String
|
24
25
|
|
26
|
+
attr_accessor account_revenue_rate: String?
|
27
|
+
|
25
28
|
attr_accessor bank: Increase::Models::Account::bank
|
26
29
|
|
27
30
|
attr_accessor closed_at: Time?
|
@@ -52,6 +55,7 @@ module Increase
|
|
52
55
|
|
53
56
|
def initialize: (
|
54
57
|
id: String,
|
58
|
+
account_revenue_rate: String?,
|
55
59
|
bank: Increase::Models::Account::bank,
|
56
60
|
closed_at: Time?,
|
57
61
|
created_at: Time,
|
@@ -70,6 +74,7 @@ module Increase
|
|
70
74
|
|
71
75
|
def to_hash: -> {
|
72
76
|
id: String,
|
77
|
+
account_revenue_rate: String?,
|
73
78
|
bank: Increase::Models::Account::bank,
|
74
79
|
closed_at: Time?,
|
75
80
|
created_at: Time,
|
@@ -128,7 +128,6 @@ module Increase
|
|
128
128
|
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
129
129
|
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
130
130
|
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
131
|
-
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
132
131
|
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
133
132
|
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
134
133
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
@@ -187,8 +186,6 @@ module Increase
|
|
187
186
|
|
188
187
|
attr_accessor inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?
|
189
188
|
|
190
|
-
attr_accessor inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?
|
191
|
-
|
192
189
|
attr_accessor inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?
|
193
190
|
|
194
191
|
attr_accessor inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?
|
@@ -234,7 +231,6 @@ module Increase
|
|
234
231
|
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
235
232
|
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
236
233
|
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
237
|
-
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
238
234
|
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
239
235
|
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
240
236
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
@@ -271,7 +267,6 @@ module Increase
|
|
271
267
|
inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
|
272
268
|
inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
|
273
269
|
inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
|
274
|
-
inbound_real_time_payments_transfer_decline: Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline?,
|
275
270
|
inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
|
276
271
|
inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
|
277
272
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
@@ -3108,7 +3103,6 @@ module Increase
|
|
3108
3103
|
| :inbound_check_deposit_return_intention
|
3109
3104
|
| :inbound_check_adjustment
|
3110
3105
|
| :inbound_real_time_payments_transfer_confirmation
|
3111
|
-
| :inbound_real_time_payments_transfer_decline
|
3112
3106
|
| :inbound_wire_reversal
|
3113
3107
|
| :inbound_wire_transfer
|
3114
3108
|
| :inbound_wire_transfer_reversal
|
@@ -3185,9 +3179,6 @@ module Increase
|
|
3185
3179
|
# Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
|
3186
3180
|
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION: :inbound_real_time_payments_transfer_confirmation
|
3187
3181
|
|
3188
|
-
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
3189
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE: :inbound_real_time_payments_transfer_decline
|
3190
|
-
|
3191
3182
|
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
3192
3183
|
INBOUND_WIRE_REVERSAL: :inbound_wire_reversal
|
3193
3184
|
|
@@ -3891,126 +3882,6 @@ module Increase
|
|
3891
3882
|
end
|
3892
3883
|
end
|
3893
3884
|
|
3894
|
-
type inbound_real_time_payments_transfer_decline =
|
3895
|
-
{
|
3896
|
-
amount: Integer,
|
3897
|
-
creditor_name: String,
|
3898
|
-
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3899
|
-
debtor_account_number: String,
|
3900
|
-
debtor_name: String,
|
3901
|
-
debtor_routing_number: String,
|
3902
|
-
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3903
|
-
remittance_information: String?,
|
3904
|
-
transaction_identification: String,
|
3905
|
-
transfer_id: String
|
3906
|
-
}
|
3907
|
-
|
3908
|
-
class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
|
3909
|
-
attr_accessor amount: Integer
|
3910
|
-
|
3911
|
-
attr_accessor creditor_name: String
|
3912
|
-
|
3913
|
-
attr_accessor currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency
|
3914
|
-
|
3915
|
-
attr_accessor debtor_account_number: String
|
3916
|
-
|
3917
|
-
attr_accessor debtor_name: String
|
3918
|
-
|
3919
|
-
attr_accessor debtor_routing_number: String
|
3920
|
-
|
3921
|
-
attr_accessor reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason
|
3922
|
-
|
3923
|
-
attr_accessor remittance_information: String?
|
3924
|
-
|
3925
|
-
attr_accessor transaction_identification: String
|
3926
|
-
|
3927
|
-
attr_accessor transfer_id: String
|
3928
|
-
|
3929
|
-
def initialize: (
|
3930
|
-
amount: Integer,
|
3931
|
-
creditor_name: String,
|
3932
|
-
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3933
|
-
debtor_account_number: String,
|
3934
|
-
debtor_name: String,
|
3935
|
-
debtor_routing_number: String,
|
3936
|
-
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3937
|
-
remittance_information: String?,
|
3938
|
-
transaction_identification: String,
|
3939
|
-
transfer_id: String
|
3940
|
-
) -> void
|
3941
|
-
|
3942
|
-
def to_hash: -> {
|
3943
|
-
amount: Integer,
|
3944
|
-
creditor_name: String,
|
3945
|
-
currency: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency,
|
3946
|
-
debtor_account_number: String,
|
3947
|
-
debtor_name: String,
|
3948
|
-
debtor_routing_number: String,
|
3949
|
-
reason: Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason,
|
3950
|
-
remittance_information: String?,
|
3951
|
-
transaction_identification: String,
|
3952
|
-
transfer_id: String
|
3953
|
-
}
|
3954
|
-
|
3955
|
-
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
3956
|
-
|
3957
|
-
module Currency
|
3958
|
-
extend Increase::Internal::Type::Enum
|
3959
|
-
|
3960
|
-
# Canadian Dollar (CAD)
|
3961
|
-
CAD: :CAD
|
3962
|
-
|
3963
|
-
# Swiss Franc (CHF)
|
3964
|
-
CHF: :CHF
|
3965
|
-
|
3966
|
-
# Euro (EUR)
|
3967
|
-
EUR: :EUR
|
3968
|
-
|
3969
|
-
# British Pound (GBP)
|
3970
|
-
GBP: :GBP
|
3971
|
-
|
3972
|
-
# Japanese Yen (JPY)
|
3973
|
-
JPY: :JPY
|
3974
|
-
|
3975
|
-
# US Dollar (USD)
|
3976
|
-
USD: :USD
|
3977
|
-
|
3978
|
-
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::currency]
|
3979
|
-
end
|
3980
|
-
|
3981
|
-
type reason =
|
3982
|
-
:account_number_canceled
|
3983
|
-
| :account_number_disabled
|
3984
|
-
| :account_restricted
|
3985
|
-
| :group_locked
|
3986
|
-
| :entity_not_active
|
3987
|
-
| :real_time_payments_not_enabled
|
3988
|
-
|
3989
|
-
module Reason
|
3990
|
-
extend Increase::Internal::Type::Enum
|
3991
|
-
|
3992
|
-
# The account number is canceled.
|
3993
|
-
ACCOUNT_NUMBER_CANCELED: :account_number_canceled
|
3994
|
-
|
3995
|
-
# The account number is disabled.
|
3996
|
-
ACCOUNT_NUMBER_DISABLED: :account_number_disabled
|
3997
|
-
|
3998
|
-
# Your account is restricted.
|
3999
|
-
ACCOUNT_RESTRICTED: :account_restricted
|
4000
|
-
|
4001
|
-
# Your account is inactive.
|
4002
|
-
GROUP_LOCKED: :group_locked
|
4003
|
-
|
4004
|
-
# The account's entity is not active.
|
4005
|
-
ENTITY_NOT_ACTIVE: :entity_not_active
|
4006
|
-
|
4007
|
-
# Your account is not enabled to receive Real-Time Payments transfers.
|
4008
|
-
REAL_TIME_PAYMENTS_NOT_ENABLED: :real_time_payments_not_enabled
|
4009
|
-
|
4010
|
-
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferDecline::reason]
|
4011
|
-
end
|
4012
|
-
end
|
4013
|
-
|
4014
3885
|
type inbound_wire_reversal =
|
4015
3886
|
{
|
4016
3887
|
amount: Integer,
|
@@ -102,7 +102,6 @@ module Increase
|
|
102
102
|
| :inbound_check_deposit_return_intention
|
103
103
|
| :inbound_check_adjustment
|
104
104
|
| :inbound_real_time_payments_transfer_confirmation
|
105
|
-
| :inbound_real_time_payments_transfer_decline
|
106
105
|
| :inbound_wire_reversal
|
107
106
|
| :inbound_wire_transfer
|
108
107
|
| :inbound_wire_transfer_reversal
|
@@ -179,9 +178,6 @@ module Increase
|
|
179
178
|
# Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
|
180
179
|
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION: :inbound_real_time_payments_transfer_confirmation
|
181
180
|
|
182
|
-
# Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
|
183
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE: :inbound_real_time_payments_transfer_decline
|
184
|
-
|
185
181
|
# Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
|
186
182
|
INBOUND_WIRE_REVERSAL: :inbound_wire_reversal
|
187
183
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.47.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|