increase 1.100.1 → 1.102.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_dispute.rb +6 -24
- data/lib/increase/models/check_deposit.rb +9 -7
- data/lib/increase/models/transaction.rb +6 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_dispute.rbi +8 -90
- data/rbi/increase/models/check_deposit.rbi +11 -7
- data/rbi/increase/models/transaction.rbi +8 -4
- data/sig/increase/models/card_dispute.rbs +8 -24
- 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: 0073e33da4dc5316fa83774df2a6fa059ebb617ea2b59228baadbf5badc23f45
|
4
|
+
data.tar.gz: afc8cc41146b15bb5235d757acc800561995a5eb14d66704cd3601d0a629ba5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ec9eef0932e280e9952791c9774e2b2ea0384ba07b911c8b7f84d676237e74c5cdfe8a7a93ebd97f8beb30b6e036f03a4d3e3bad43786cb6031829b755f1aa8
|
7
|
+
data.tar.gz: d36ef78910af83b9a822fb7e98e69c6ea401e4241222852d227f9a167f67991a7056c6a21f154411ecd79b4e3277dd32ea7a97939a92d370b43cbaf6469124ff
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.102.0 (2025-10-06)
|
4
|
+
|
5
|
+
Full Changelog: [v1.101.0...v1.102.0](https://github.com/Increase/increase-ruby/compare/v1.101.0...v1.102.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([c26001f](https://github.com/Increase/increase-ruby/commit/c26001f4d6d634a08d4b29382e82964a21d165bf))
|
10
|
+
|
11
|
+
## 1.101.0 (2025-10-06)
|
12
|
+
|
13
|
+
Full Changelog: [v1.100.1...v1.101.0](https://github.com/Increase/increase-ruby/compare/v1.100.1...v1.101.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([1e0a06f](https://github.com/Increase/increase-ruby/commit/1e0a06fd18e7c6f3c8c81d2c18ab42589c5686bd))
|
18
|
+
|
3
19
|
## 1.100.1 (2025-10-06)
|
4
20
|
|
5
21
|
Full Changelog: [v1.100.0...v1.100.1](https://github.com/Increase/increase-ruby/compare/v1.100.0...v1.100.1)
|
data/README.md
CHANGED
@@ -990,11 +990,9 @@ module Increase
|
|
990
990
|
# Non-fiat currency or non-fungible token as described details. Present if and
|
991
991
|
# only if `reason` is `non_fiat_currency_or_non_fungible_token_as_described`.
|
992
992
|
#
|
993
|
-
# @return [
|
993
|
+
# @return [Object, nil]
|
994
994
|
required :non_fiat_currency_or_non_fungible_token_as_described,
|
995
|
-
|
996
|
-
Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed
|
997
|
-
},
|
995
|
+
Increase::Internal::Type::Unknown,
|
998
996
|
nil?: true
|
999
997
|
|
1000
998
|
# @!attribute non_fiat_currency_or_non_fungible_token_received
|
@@ -1049,7 +1047,7 @@ module Increase
|
|
1049
1047
|
#
|
1050
1048
|
# @param invalid_dispute [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute, nil] Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.
|
1051
1049
|
#
|
1052
|
-
# @param non_fiat_currency_or_non_fungible_token_as_described [
|
1050
|
+
# @param non_fiat_currency_or_non_fungible_token_as_described [Object, nil] Non-fiat currency or non-fungible token as described details. Present if and onl
|
1053
1051
|
#
|
1054
1052
|
# @param non_fiat_currency_or_non_fungible_token_received [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived, nil] Non-fiat currency or non-fungible token received details. Present if and only if
|
1055
1053
|
#
|
@@ -1265,13 +1263,6 @@ module Increase
|
|
1265
1263
|
end
|
1266
1264
|
end
|
1267
1265
|
|
1268
|
-
# @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#non_fiat_currency_or_non_fungible_token_as_described
|
1269
|
-
class NonFiatCurrencyOrNonFungibleTokenAsDescribed < Increase::Internal::Type::BaseModel
|
1270
|
-
# @!method initialize
|
1271
|
-
# Non-fiat currency or non-fungible token as described details. Present if and
|
1272
|
-
# only if `reason` is `non_fiat_currency_or_non_fungible_token_as_described`.
|
1273
|
-
end
|
1274
|
-
|
1275
1266
|
# @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#non_fiat_currency_or_non_fungible_token_received
|
1276
1267
|
class NonFiatCurrencyOrNonFungibleTokenReceived < Increase::Internal::Type::BaseModel
|
1277
1268
|
# @!attribute blockchain_transaction_hash
|
@@ -1665,10 +1656,8 @@ module Increase
|
|
1665
1656
|
# Non-receipt of cash. Present if and only if `category` is
|
1666
1657
|
# `consumer_non_receipt_of_cash`.
|
1667
1658
|
#
|
1668
|
-
# @return [
|
1669
|
-
required :consumer_non_receipt_of_cash,
|
1670
|
-
-> { Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash },
|
1671
|
-
nil?: true
|
1659
|
+
# @return [Object, nil]
|
1660
|
+
required :consumer_non_receipt_of_cash, Increase::Internal::Type::Unknown, nil?: true
|
1672
1661
|
|
1673
1662
|
# @!attribute consumer_original_credit_transaction_not_accepted
|
1674
1663
|
# Original Credit Transaction (OCT) not accepted. Present if and only if
|
@@ -1780,7 +1769,7 @@ module Increase
|
|
1780
1769
|
#
|
1781
1770
|
# @param consumer_merchandise_not_received [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived, nil] Merchandise not received. Present if and only if `category` is `consumer_merchan
|
1782
1771
|
#
|
1783
|
-
# @param consumer_non_receipt_of_cash [
|
1772
|
+
# @param consumer_non_receipt_of_cash [Object, nil] Non-receipt of cash. Present if and only if `category` is `consumer*non_receipt*
|
1784
1773
|
#
|
1785
1774
|
# @param consumer_original_credit_transaction_not_accepted [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted, nil] Original Credit Transaction (OCT) not accepted. Present if and only if `category
|
1786
1775
|
#
|
@@ -3683,13 +3672,6 @@ module Increase
|
|
3683
3672
|
end
|
3684
3673
|
end
|
3685
3674
|
|
3686
|
-
# @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback#consumer_non_receipt_of_cash
|
3687
|
-
class ConsumerNonReceiptOfCash < Increase::Internal::Type::BaseModel
|
3688
|
-
# @!method initialize
|
3689
|
-
# Non-receipt of cash. Present if and only if `category` is
|
3690
|
-
# `consumer_non_receipt_of_cash`.
|
3691
|
-
end
|
3692
|
-
|
3693
3675
|
# @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback#consumer_original_credit_transaction_not_accepted
|
3694
3676
|
class ConsumerOriginalCreditTransactionNotAccepted < Increase::Internal::Type::BaseModel
|
3695
3677
|
# @!attribute explanation
|
@@ -36,7 +36,7 @@ module Increase
|
|
36
36
|
required :created_at, Time
|
37
37
|
|
38
38
|
# @!attribute deposit_acceptance
|
39
|
-
#
|
39
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
40
40
|
# contain details of the parsed check.
|
41
41
|
#
|
42
42
|
# @return [Increase::Models::CheckDeposit::DepositAcceptance, nil]
|
@@ -139,7 +139,7 @@ module Increase
|
|
139
139
|
#
|
140
140
|
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
141
141
|
#
|
142
|
-
# @param deposit_acceptance [Increase::Models::CheckDeposit::DepositAcceptance, nil]
|
142
|
+
# @param deposit_acceptance [Increase::Models::CheckDeposit::DepositAcceptance, nil] Once your deposit is successfully parsed and accepted by Increase, this will con
|
143
143
|
#
|
144
144
|
# @param deposit_rejection [Increase::Models::CheckDeposit::DepositRejection, nil] If your deposit is rejected by Increase, this will contain details as to why it
|
145
145
|
#
|
@@ -168,7 +168,8 @@ module Increase
|
|
168
168
|
# @see Increase::Models::CheckDeposit#deposit_acceptance
|
169
169
|
class DepositAcceptance < Increase::Internal::Type::BaseModel
|
170
170
|
# @!attribute account_number
|
171
|
-
# The account number printed on the check.
|
171
|
+
# The account number printed on the check. This is an account at the bank that
|
172
|
+
# issued the check.
|
172
173
|
#
|
173
174
|
# @return [String]
|
174
175
|
required :account_number, String
|
@@ -201,7 +202,8 @@ module Increase
|
|
201
202
|
required :currency, enum: -> { Increase::CheckDeposit::DepositAcceptance::Currency }
|
202
203
|
|
203
204
|
# @!attribute routing_number
|
204
|
-
# The routing number printed on the check.
|
205
|
+
# The routing number printed on the check. This is a routing number for the bank
|
206
|
+
# that issued the check.
|
205
207
|
#
|
206
208
|
# @return [String]
|
207
209
|
required :routing_number, String
|
@@ -217,10 +219,10 @@ module Increase
|
|
217
219
|
# Some parameter documentations has been truncated, see
|
218
220
|
# {Increase::Models::CheckDeposit::DepositAcceptance} for more details.
|
219
221
|
#
|
220
|
-
#
|
222
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
221
223
|
# contain details of the parsed check.
|
222
224
|
#
|
223
|
-
# @param account_number [String] The account number printed on the check.
|
225
|
+
# @param account_number [String] The account number printed on the check. This is an account at the bank that iss
|
224
226
|
#
|
225
227
|
# @param amount [Integer] The amount to be deposited in the minor unit of the transaction's currency. For
|
226
228
|
#
|
@@ -230,7 +232,7 @@ module Increase
|
|
230
232
|
#
|
231
233
|
# @param currency [Symbol, Increase::Models::CheckDeposit::DepositAcceptance::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction'
|
232
234
|
#
|
233
|
-
# @param routing_number [String] The routing number printed on the check.
|
235
|
+
# @param routing_number [String] The routing number printed on the check. This is a routing number for the bank t
|
234
236
|
#
|
235
237
|
# @param serial_number [String, nil] The check serial number, if present, for consumer checks. For business checks, t
|
236
238
|
|
@@ -5485,7 +5485,8 @@ module Increase
|
|
5485
5485
|
# @see Increase::Models::Transaction::Source#check_deposit_acceptance
|
5486
5486
|
class CheckDepositAcceptance < Increase::Internal::Type::BaseModel
|
5487
5487
|
# @!attribute account_number
|
5488
|
-
# The account number printed on the check.
|
5488
|
+
# The account number printed on the check. This is an account at the bank that
|
5489
|
+
# issued the check.
|
5489
5490
|
#
|
5490
5491
|
# @return [String]
|
5491
5492
|
required :account_number, String
|
@@ -5518,7 +5519,8 @@ module Increase
|
|
5518
5519
|
required :currency, enum: -> { Increase::Transaction::Source::CheckDepositAcceptance::Currency }
|
5519
5520
|
|
5520
5521
|
# @!attribute routing_number
|
5521
|
-
# The routing number printed on the check.
|
5522
|
+
# The routing number printed on the check. This is a routing number for the bank
|
5523
|
+
# that issued the check.
|
5522
5524
|
#
|
5523
5525
|
# @return [String]
|
5524
5526
|
required :routing_number, String
|
@@ -5541,7 +5543,7 @@ module Increase
|
|
5541
5543
|
# details confirmed. Check Deposits may be returned by the receiving bank, which
|
5542
5544
|
# will appear as a Check Deposit Return.
|
5543
5545
|
#
|
5544
|
-
# @param account_number [String] The account number printed on the check.
|
5546
|
+
# @param account_number [String] The account number printed on the check. This is an account at the bank that iss
|
5545
5547
|
#
|
5546
5548
|
# @param amount [Integer] The amount to be deposited in the minor unit of the transaction's currency. For
|
5547
5549
|
#
|
@@ -5551,7 +5553,7 @@ module Increase
|
|
5551
5553
|
#
|
5552
5554
|
# @param currency [Symbol, Increase::Models::Transaction::Source::CheckDepositAcceptance::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction'
|
5553
5555
|
#
|
5554
|
-
# @param routing_number [String] The routing number printed on the check.
|
5556
|
+
# @param routing_number [String] The routing number printed on the check. This is a routing number for the bank t
|
5555
5557
|
#
|
5556
5558
|
# @param serial_number [String, nil] The check serial number, if present, for consumer checks. For business checks, t
|
5557
5559
|
|
data/lib/increase/version.rb
CHANGED
@@ -1835,24 +1835,8 @@ module Increase
|
|
1835
1835
|
|
1836
1836
|
# Non-fiat currency or non-fungible token as described details. Present if and
|
1837
1837
|
# only if `reason` is `non_fiat_currency_or_non_fungible_token_as_described`.
|
1838
|
-
sig
|
1839
|
-
|
1840
|
-
T.nilable(
|
1841
|
-
Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed
|
1842
|
-
)
|
1843
|
-
)
|
1844
|
-
end
|
1845
|
-
attr_reader :non_fiat_currency_or_non_fungible_token_as_described
|
1846
|
-
|
1847
|
-
sig do
|
1848
|
-
params(
|
1849
|
-
non_fiat_currency_or_non_fungible_token_as_described:
|
1850
|
-
T.nilable(
|
1851
|
-
Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed::OrHash
|
1852
|
-
)
|
1853
|
-
).void
|
1854
|
-
end
|
1855
|
-
attr_writer :non_fiat_currency_or_non_fungible_token_as_described
|
1838
|
+
sig { returns(T.nilable(T.anything)) }
|
1839
|
+
attr_accessor :non_fiat_currency_or_non_fungible_token_as_described
|
1856
1840
|
|
1857
1841
|
# Non-fiat currency or non-fungible token received details. Present if and only if
|
1858
1842
|
# `reason` is `non_fiat_currency_or_non_fungible_token_received`.
|
@@ -1945,9 +1929,7 @@ module Increase
|
|
1945
1929
|
Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute::OrHash
|
1946
1930
|
),
|
1947
1931
|
non_fiat_currency_or_non_fungible_token_as_described:
|
1948
|
-
T.nilable(
|
1949
|
-
Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed::OrHash
|
1950
|
-
),
|
1932
|
+
T.nilable(T.anything),
|
1951
1933
|
non_fiat_currency_or_non_fungible_token_received:
|
1952
1934
|
T.nilable(
|
1953
1935
|
Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived::OrHash
|
@@ -2006,9 +1988,7 @@ module Increase
|
|
2006
1988
|
Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute
|
2007
1989
|
),
|
2008
1990
|
non_fiat_currency_or_non_fungible_token_as_described:
|
2009
|
-
T.nilable(
|
2010
|
-
Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed
|
2011
|
-
),
|
1991
|
+
T.nilable(T.anything),
|
2012
1992
|
non_fiat_currency_or_non_fungible_token_received:
|
2013
1993
|
T.nilable(
|
2014
1994
|
Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived
|
@@ -2437,26 +2417,6 @@ module Increase
|
|
2437
2417
|
end
|
2438
2418
|
end
|
2439
2419
|
|
2440
|
-
class NonFiatCurrencyOrNonFungibleTokenAsDescribed < Increase::Internal::Type::BaseModel
|
2441
|
-
OrHash =
|
2442
|
-
T.type_alias do
|
2443
|
-
T.any(
|
2444
|
-
Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed,
|
2445
|
-
Increase::Internal::AnyHash
|
2446
|
-
)
|
2447
|
-
end
|
2448
|
-
|
2449
|
-
# Non-fiat currency or non-fungible token as described details. Present if and
|
2450
|
-
# only if `reason` is `non_fiat_currency_or_non_fungible_token_as_described`.
|
2451
|
-
sig { returns(T.attached_class) }
|
2452
|
-
def self.new
|
2453
|
-
end
|
2454
|
-
|
2455
|
-
sig { override.returns({}) }
|
2456
|
-
def to_hash
|
2457
|
-
end
|
2458
|
-
end
|
2459
|
-
|
2460
2420
|
class NonFiatCurrencyOrNonFungibleTokenReceived < Increase::Internal::Type::BaseModel
|
2461
2421
|
OrHash =
|
2462
2422
|
T.type_alias do
|
@@ -3236,24 +3196,8 @@ module Increase
|
|
3236
3196
|
|
3237
3197
|
# Non-receipt of cash. Present if and only if `category` is
|
3238
3198
|
# `consumer_non_receipt_of_cash`.
|
3239
|
-
sig
|
3240
|
-
|
3241
|
-
T.nilable(
|
3242
|
-
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash
|
3243
|
-
)
|
3244
|
-
)
|
3245
|
-
end
|
3246
|
-
attr_reader :consumer_non_receipt_of_cash
|
3247
|
-
|
3248
|
-
sig do
|
3249
|
-
params(
|
3250
|
-
consumer_non_receipt_of_cash:
|
3251
|
-
T.nilable(
|
3252
|
-
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash::OrHash
|
3253
|
-
)
|
3254
|
-
).void
|
3255
|
-
end
|
3256
|
-
attr_writer :consumer_non_receipt_of_cash
|
3199
|
+
sig { returns(T.nilable(T.anything)) }
|
3200
|
+
attr_accessor :consumer_non_receipt_of_cash
|
3257
3201
|
|
3258
3202
|
# Original Credit Transaction (OCT) not accepted. Present if and only if
|
3259
3203
|
# `category` is `consumer_original_credit_transaction_not_accepted`.
|
@@ -3469,10 +3413,7 @@ module Increase
|
|
3469
3413
|
T.nilable(
|
3470
3414
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::OrHash
|
3471
3415
|
),
|
3472
|
-
consumer_non_receipt_of_cash:
|
3473
|
-
T.nilable(
|
3474
|
-
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash::OrHash
|
3475
|
-
),
|
3416
|
+
consumer_non_receipt_of_cash: T.nilable(T.anything),
|
3476
3417
|
consumer_original_credit_transaction_not_accepted:
|
3477
3418
|
T.nilable(
|
3478
3419
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted::OrHash
|
@@ -3612,10 +3553,7 @@ module Increase
|
|
3612
3553
|
T.nilable(
|
3613
3554
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived
|
3614
3555
|
),
|
3615
|
-
consumer_non_receipt_of_cash:
|
3616
|
-
T.nilable(
|
3617
|
-
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash
|
3618
|
-
),
|
3556
|
+
consumer_non_receipt_of_cash: T.nilable(T.anything),
|
3619
3557
|
consumer_original_credit_transaction_not_accepted:
|
3620
3558
|
T.nilable(
|
3621
3559
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted
|
@@ -7401,26 +7339,6 @@ module Increase
|
|
7401
7339
|
end
|
7402
7340
|
end
|
7403
7341
|
|
7404
|
-
class ConsumerNonReceiptOfCash < Increase::Internal::Type::BaseModel
|
7405
|
-
OrHash =
|
7406
|
-
T.type_alias do
|
7407
|
-
T.any(
|
7408
|
-
Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash,
|
7409
|
-
Increase::Internal::AnyHash
|
7410
|
-
)
|
7411
|
-
end
|
7412
|
-
|
7413
|
-
# Non-receipt of cash. Present if and only if `category` is
|
7414
|
-
# `consumer_non_receipt_of_cash`.
|
7415
|
-
sig { returns(T.attached_class) }
|
7416
|
-
def self.new
|
7417
|
-
end
|
7418
|
-
|
7419
|
-
sig { override.returns({}) }
|
7420
|
-
def to_hash
|
7421
|
-
end
|
7422
|
-
end
|
7423
|
-
|
7424
7342
|
class ConsumerOriginalCreditTransactionNotAccepted < Increase::Internal::Type::BaseModel
|
7425
7343
|
OrHash =
|
7426
7344
|
T.type_alias do
|
@@ -29,7 +29,7 @@ module Increase
|
|
29
29
|
sig { returns(Time) }
|
30
30
|
attr_accessor :created_at
|
31
31
|
|
32
|
-
#
|
32
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
33
33
|
# contain details of the parsed check.
|
34
34
|
sig { returns(T.nilable(Increase::CheckDeposit::DepositAcceptance)) }
|
35
35
|
attr_reader :deposit_acceptance
|
@@ -171,7 +171,7 @@ module Increase
|
|
171
171
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
172
172
|
# the transfer was created.
|
173
173
|
created_at:,
|
174
|
-
#
|
174
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
175
175
|
# contain details of the parsed check.
|
176
176
|
deposit_acceptance:,
|
177
177
|
# If your deposit is rejected by Increase, this will contain details as to why it
|
@@ -250,7 +250,8 @@ module Increase
|
|
250
250
|
)
|
251
251
|
end
|
252
252
|
|
253
|
-
# The account number printed on the check.
|
253
|
+
# The account number printed on the check. This is an account at the bank that
|
254
|
+
# issued the check.
|
254
255
|
sig { returns(String) }
|
255
256
|
attr_accessor :account_number
|
256
257
|
|
@@ -277,7 +278,8 @@ module Increase
|
|
277
278
|
end
|
278
279
|
attr_accessor :currency
|
279
280
|
|
280
|
-
# The routing number printed on the check.
|
281
|
+
# The routing number printed on the check. This is a routing number for the bank
|
282
|
+
# that issued the check.
|
281
283
|
sig { returns(String) }
|
282
284
|
attr_accessor :routing_number
|
283
285
|
|
@@ -286,7 +288,7 @@ module Increase
|
|
286
288
|
sig { returns(T.nilable(String)) }
|
287
289
|
attr_accessor :serial_number
|
288
290
|
|
289
|
-
#
|
291
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
290
292
|
# contain details of the parsed check.
|
291
293
|
sig do
|
292
294
|
params(
|
@@ -301,7 +303,8 @@ module Increase
|
|
301
303
|
).returns(T.attached_class)
|
302
304
|
end
|
303
305
|
def self.new(
|
304
|
-
# The account number printed on the check.
|
306
|
+
# The account number printed on the check. This is an account at the bank that
|
307
|
+
# issued the check.
|
305
308
|
account_number:,
|
306
309
|
# The amount to be deposited in the minor unit of the transaction's currency. For
|
307
310
|
# dollars, for example, this is cents.
|
@@ -314,7 +317,8 @@ module Increase
|
|
314
317
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
315
318
|
# transaction's currency.
|
316
319
|
currency:,
|
317
|
-
# The routing number printed on the check.
|
320
|
+
# The routing number printed on the check. This is a routing number for the bank
|
321
|
+
# that issued the check.
|
318
322
|
routing_number:,
|
319
323
|
# The check serial number, if present, for consumer checks. For business checks,
|
320
324
|
# the serial number is usually in the `auxiliary_on_us` field.
|
@@ -10334,7 +10334,8 @@ module Increase
|
|
10334
10334
|
)
|
10335
10335
|
end
|
10336
10336
|
|
10337
|
-
# The account number printed on the check.
|
10337
|
+
# The account number printed on the check. This is an account at the bank that
|
10338
|
+
# issued the check.
|
10338
10339
|
sig { returns(String) }
|
10339
10340
|
attr_accessor :account_number
|
10340
10341
|
|
@@ -10361,7 +10362,8 @@ module Increase
|
|
10361
10362
|
end
|
10362
10363
|
attr_accessor :currency
|
10363
10364
|
|
10364
|
-
# The routing number printed on the check.
|
10365
|
+
# The routing number printed on the check. This is a routing number for the bank
|
10366
|
+
# that issued the check.
|
10365
10367
|
sig { returns(String) }
|
10366
10368
|
attr_accessor :routing_number
|
10367
10369
|
|
@@ -10388,7 +10390,8 @@ module Increase
|
|
10388
10390
|
).returns(T.attached_class)
|
10389
10391
|
end
|
10390
10392
|
def self.new(
|
10391
|
-
# The account number printed on the check.
|
10393
|
+
# The account number printed on the check. This is an account at the bank that
|
10394
|
+
# issued the check.
|
10392
10395
|
account_number:,
|
10393
10396
|
# The amount to be deposited in the minor unit of the transaction's currency. For
|
10394
10397
|
# dollars, for example, this is cents.
|
@@ -10401,7 +10404,8 @@ module Increase
|
|
10401
10404
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
10402
10405
|
# transaction's currency.
|
10403
10406
|
currency:,
|
10404
|
-
# The routing number printed on the check.
|
10407
|
+
# The routing number printed on the check. This is a routing number for the bank
|
10408
|
+
# that issued the check.
|
10405
10409
|
routing_number:,
|
10406
10410
|
# The check serial number, if present, for consumer checks. For business checks,
|
10407
10411
|
# the serial number is usually in the `auxiliary_on_us` field.
|
@@ -686,7 +686,7 @@ module Increase
|
|
686
686
|
cardholder_no_longer_disputes: Increase::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes?,
|
687
687
|
credit_or_reversal_processed: Increase::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed?,
|
688
688
|
invalid_dispute: Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute?,
|
689
|
-
non_fiat_currency_or_non_fungible_token_as_described:
|
689
|
+
non_fiat_currency_or_non_fungible_token_as_described: top?,
|
690
690
|
non_fiat_currency_or_non_fungible_token_received: Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived?,
|
691
691
|
proof_of_cash_disbursement: Increase::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement?,
|
692
692
|
reason: Increase::Models::CardDispute::Visa::NetworkEvent::Represented::reason,
|
@@ -700,7 +700,7 @@ module Increase
|
|
700
700
|
|
701
701
|
attr_accessor invalid_dispute: Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute?
|
702
702
|
|
703
|
-
attr_accessor non_fiat_currency_or_non_fungible_token_as_described:
|
703
|
+
attr_accessor non_fiat_currency_or_non_fungible_token_as_described: top?
|
704
704
|
|
705
705
|
attr_accessor non_fiat_currency_or_non_fungible_token_received: Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived?
|
706
706
|
|
@@ -714,7 +714,7 @@ module Increase
|
|
714
714
|
cardholder_no_longer_disputes: Increase::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes?,
|
715
715
|
credit_or_reversal_processed: Increase::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed?,
|
716
716
|
invalid_dispute: Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute?,
|
717
|
-
non_fiat_currency_or_non_fungible_token_as_described:
|
717
|
+
non_fiat_currency_or_non_fungible_token_as_described: top?,
|
718
718
|
non_fiat_currency_or_non_fungible_token_received: Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived?,
|
719
719
|
proof_of_cash_disbursement: Increase::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement?,
|
720
720
|
reason: Increase::Models::CardDispute::Visa::NetworkEvent::Represented::reason,
|
@@ -725,7 +725,7 @@ module Increase
|
|
725
725
|
cardholder_no_longer_disputes: Increase::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes?,
|
726
726
|
credit_or_reversal_processed: Increase::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed?,
|
727
727
|
invalid_dispute: Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute?,
|
728
|
-
non_fiat_currency_or_non_fungible_token_as_described:
|
728
|
+
non_fiat_currency_or_non_fungible_token_as_described: top?,
|
729
729
|
non_fiat_currency_or_non_fungible_token_received: Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived?,
|
730
730
|
proof_of_cash_disbursement: Increase::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement?,
|
731
731
|
reason: Increase::Models::CardDispute::Visa::NetworkEvent::Represented::reason,
|
@@ -940,14 +940,6 @@ module Increase
|
|
940
940
|
end
|
941
941
|
end
|
942
942
|
|
943
|
-
type non_fiat_currency_or_non_fungible_token_as_described = { }
|
944
|
-
|
945
|
-
class NonFiatCurrencyOrNonFungibleTokenAsDescribed < Increase::Internal::Type::BaseModel
|
946
|
-
def initialize: -> void
|
947
|
-
|
948
|
-
def to_hash: -> { }
|
949
|
-
end
|
950
|
-
|
951
943
|
type non_fiat_currency_or_non_fungible_token_received =
|
952
944
|
{
|
953
945
|
blockchain_transaction_hash: String,
|
@@ -1165,7 +1157,7 @@ module Increase
|
|
1165
1157
|
consumer_merchandise_misrepresentation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation?,
|
1166
1158
|
consumer_merchandise_not_as_described: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotAsDescribed?,
|
1167
1159
|
consumer_merchandise_not_received: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived?,
|
1168
|
-
consumer_non_receipt_of_cash:
|
1160
|
+
consumer_non_receipt_of_cash: top?,
|
1169
1161
|
consumer_original_credit_transaction_not_accepted: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted?,
|
1170
1162
|
consumer_quality_merchandise: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise?,
|
1171
1163
|
consumer_quality_services: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityServices?,
|
@@ -1199,7 +1191,7 @@ module Increase
|
|
1199
1191
|
|
1200
1192
|
attr_accessor consumer_merchandise_not_received: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived?
|
1201
1193
|
|
1202
|
-
attr_accessor consumer_non_receipt_of_cash:
|
1194
|
+
attr_accessor consumer_non_receipt_of_cash: top?
|
1203
1195
|
|
1204
1196
|
attr_accessor consumer_original_credit_transaction_not_accepted: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted?
|
1205
1197
|
|
@@ -1229,7 +1221,7 @@ module Increase
|
|
1229
1221
|
consumer_merchandise_misrepresentation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation?,
|
1230
1222
|
consumer_merchandise_not_as_described: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotAsDescribed?,
|
1231
1223
|
consumer_merchandise_not_received: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived?,
|
1232
|
-
consumer_non_receipt_of_cash:
|
1224
|
+
consumer_non_receipt_of_cash: top?,
|
1233
1225
|
consumer_original_credit_transaction_not_accepted: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted?,
|
1234
1226
|
consumer_quality_merchandise: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise?,
|
1235
1227
|
consumer_quality_services: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityServices?,
|
@@ -1252,7 +1244,7 @@ module Increase
|
|
1252
1244
|
consumer_merchandise_misrepresentation: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation?,
|
1253
1245
|
consumer_merchandise_not_as_described: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotAsDescribed?,
|
1254
1246
|
consumer_merchandise_not_received: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived?,
|
1255
|
-
consumer_non_receipt_of_cash:
|
1247
|
+
consumer_non_receipt_of_cash: top?,
|
1256
1248
|
consumer_original_credit_transaction_not_accepted: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted?,
|
1257
1249
|
consumer_quality_merchandise: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise?,
|
1258
1250
|
consumer_quality_services: Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityServices?,
|
@@ -2804,14 +2796,6 @@ module Increase
|
|
2804
2796
|
end
|
2805
2797
|
end
|
2806
2798
|
|
2807
|
-
type consumer_non_receipt_of_cash = { }
|
2808
|
-
|
2809
|
-
class ConsumerNonReceiptOfCash < Increase::Internal::Type::BaseModel
|
2810
|
-
def initialize: -> void
|
2811
|
-
|
2812
|
-
def to_hash: -> { }
|
2813
|
-
end
|
2814
|
-
|
2815
2799
|
type consumer_original_credit_transaction_not_accepted =
|
2816
2800
|
{
|
2817
2801
|
explanation: String,
|