increase 1.350.0 → 1.352.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/README.md +1 -1
- data/lib/increase/models/account_statement.rb +12 -4
- data/lib/increase/models/balance_lookup.rb +1 -59
- data/lib/increase/models/declined_transaction.rb +3 -0
- data/lib/increase/models/digital_wallet_token.rb +19 -1
- data/lib/increase/models/entity_create_params.rb +33 -20
- data/lib/increase/models/entity_update_params.rb +33 -20
- data/lib/increase/models/event.rb +12 -0
- data/lib/increase/models/event_list_params.rb +12 -0
- data/lib/increase/models/event_subscription.rb +12 -0
- data/lib/increase/models/event_subscription_create_params.rb +12 -0
- data/lib/increase/models/inbound_ach_transfer.rb +9 -1
- data/lib/increase/models/inbound_real_time_payments_transfer.rb +3 -0
- data/lib/increase/models/pending_transaction.rb +121 -1
- data/lib/increase/models/pending_transaction_list_params.rb +6 -0
- data/lib/increase/models/simulations/physical_card_create_params.rb +9 -6
- data/lib/increase/models/transaction.rb +103 -1
- data/lib/increase/models/transaction_list_params.rb +6 -0
- data/lib/increase/models/unwrap_webhook_event.rb +12 -0
- data/lib/increase/resources/simulations/account_statements.rb +2 -1
- data/lib/increase/resources/simulations/physical_cards.rb +5 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_statement.rbi +12 -4
- data/rbi/increase/models/balance_lookup.rbi +3 -87
- data/rbi/increase/models/declined_transaction.rbi +7 -0
- data/rbi/increase/models/digital_wallet_token.rbi +16 -0
- data/rbi/increase/models/entity_create_params.rbi +39 -21
- data/rbi/increase/models/entity_update_params.rbi +39 -21
- data/rbi/increase/models/event.rbi +28 -0
- data/rbi/increase/models/event_list_params.rbi +28 -0
- data/rbi/increase/models/event_subscription.rbi +28 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +28 -0
- data/rbi/increase/models/inbound_ach_transfer.rbi +8 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +7 -0
- data/rbi/increase/models/pending_transaction.rbi +254 -0
- data/rbi/increase/models/pending_transaction_list_params.rbi +14 -0
- data/rbi/increase/models/simulations/physical_card_create_params.rbi +8 -6
- data/rbi/increase/models/transaction.rbi +178 -0
- data/rbi/increase/models/transaction_list_params.rbi +14 -0
- data/rbi/increase/models/unwrap_webhook_event.rbi +28 -0
- data/rbi/increase/resources/simulations/account_statements.rbi +2 -1
- data/rbi/increase/resources/simulations/physical_cards.rbi +4 -3
- data/sig/increase/models/balance_lookup.rbs +3 -42
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/digital_wallet_token.rbs +10 -0
- data/sig/increase/models/entity_create_params.rbs +20 -11
- data/sig/increase/models/entity_update_params.rbs +20 -11
- data/sig/increase/models/event.rbs +16 -0
- data/sig/increase/models/event_list_params.rbs +16 -0
- data/sig/increase/models/event_subscription.rbs +16 -0
- data/sig/increase/models/event_subscription_create_params.rbs +16 -0
- data/sig/increase/models/inbound_ach_transfer.rbs +5 -0
- data/sig/increase/models/inbound_real_time_payments_transfer.rbs +4 -0
- data/sig/increase/models/pending_transaction.rbs +84 -0
- data/sig/increase/models/pending_transaction_list_params.rbs +8 -0
- data/sig/increase/models/transaction.rbs +50 -0
- data/sig/increase/models/transaction_list_params.rbs +8 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +16 -0
- metadata +2 -2
|
@@ -73,10 +73,18 @@ module Increase
|
|
|
73
73
|
end
|
|
74
74
|
attr_writer :dynamic_primary_account_number
|
|
75
75
|
|
|
76
|
+
# The reference identifier assigned by the card network to the underlying Card.
|
|
77
|
+
sig { returns(String) }
|
|
78
|
+
attr_accessor :primary_account_number_reference_identifier
|
|
79
|
+
|
|
76
80
|
# This indicates if payments can be made with the Digital Wallet Token.
|
|
77
81
|
sig { returns(Increase::DigitalWalletToken::Status::TaggedSymbol) }
|
|
78
82
|
attr_accessor :status
|
|
79
83
|
|
|
84
|
+
# The reference identifier assigned by the card network to the token.
|
|
85
|
+
sig { returns(String) }
|
|
86
|
+
attr_accessor :token_reference_identifier
|
|
87
|
+
|
|
80
88
|
# The digital wallet app being used.
|
|
81
89
|
sig do
|
|
82
90
|
returns(Increase::DigitalWalletToken::TokenRequestor::TaggedSymbol)
|
|
@@ -108,7 +116,9 @@ module Increase
|
|
|
108
116
|
T.nilable(
|
|
109
117
|
Increase::DigitalWalletToken::DynamicPrimaryAccountNumber::OrHash
|
|
110
118
|
),
|
|
119
|
+
primary_account_number_reference_identifier: String,
|
|
111
120
|
status: Increase::DigitalWalletToken::Status::OrSymbol,
|
|
121
|
+
token_reference_identifier: String,
|
|
112
122
|
token_requestor:
|
|
113
123
|
Increase::DigitalWalletToken::TokenRequestor::OrSymbol,
|
|
114
124
|
type: Increase::DigitalWalletToken::Type::OrSymbol,
|
|
@@ -134,8 +144,12 @@ module Increase
|
|
|
134
144
|
device:,
|
|
135
145
|
# The redacted Dynamic Primary Account Number.
|
|
136
146
|
dynamic_primary_account_number:,
|
|
147
|
+
# The reference identifier assigned by the card network to the underlying Card.
|
|
148
|
+
primary_account_number_reference_identifier:,
|
|
137
149
|
# This indicates if payments can be made with the Digital Wallet Token.
|
|
138
150
|
status:,
|
|
151
|
+
# The reference identifier assigned by the card network to the token.
|
|
152
|
+
token_reference_identifier:,
|
|
139
153
|
# The digital wallet app being used.
|
|
140
154
|
token_requestor:,
|
|
141
155
|
# A constant representing the object's type. For this resource it will always be
|
|
@@ -160,7 +174,9 @@ module Increase
|
|
|
160
174
|
T.nilable(
|
|
161
175
|
Increase::DigitalWalletToken::DynamicPrimaryAccountNumber
|
|
162
176
|
),
|
|
177
|
+
primary_account_number_reference_identifier: String,
|
|
163
178
|
status: Increase::DigitalWalletToken::Status::TaggedSymbol,
|
|
179
|
+
token_reference_identifier: String,
|
|
164
180
|
token_requestor:
|
|
165
181
|
Increase::DigitalWalletToken::TokenRequestor::TaggedSymbol,
|
|
166
182
|
type: Increase::DigitalWalletToken::Type::TaggedSymbol,
|
|
@@ -3859,22 +3859,19 @@ module Increase
|
|
|
3859
3859
|
)
|
|
3860
3860
|
end
|
|
3861
3861
|
|
|
3862
|
-
# The city of the address.
|
|
3862
|
+
# The city, district, town, or village of the address.
|
|
3863
3863
|
sig { returns(String) }
|
|
3864
3864
|
attr_accessor :city
|
|
3865
3865
|
|
|
3866
|
-
# The
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
# The two-letter United States Postal Service (USPS) abbreviation for the state of
|
|
3871
|
-
# the address.
|
|
3866
|
+
# The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
3867
|
+
#
|
|
3868
|
+
# Defaults to `US`.
|
|
3872
3869
|
sig { returns(String) }
|
|
3873
|
-
attr_accessor :
|
|
3870
|
+
attr_accessor :country
|
|
3874
3871
|
|
|
3875
|
-
# The
|
|
3872
|
+
# The first line of the address. This is usually the street number and street.
|
|
3876
3873
|
sig { returns(String) }
|
|
3877
|
-
attr_accessor :
|
|
3874
|
+
attr_accessor :line1
|
|
3878
3875
|
|
|
3879
3876
|
# The second line of the address. This might be the floor or room number.
|
|
3880
3877
|
sig { returns(T.nilable(String)) }
|
|
@@ -3883,29 +3880,49 @@ module Increase
|
|
|
3883
3880
|
sig { params(line2: String).void }
|
|
3884
3881
|
attr_writer :line2
|
|
3885
3882
|
|
|
3883
|
+
# The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
3884
|
+
# state, province, or region of the address. Required in certain countries.
|
|
3885
|
+
sig { returns(T.nilable(String)) }
|
|
3886
|
+
attr_reader :state
|
|
3887
|
+
|
|
3888
|
+
sig { params(state: String).void }
|
|
3889
|
+
attr_writer :state
|
|
3890
|
+
|
|
3891
|
+
# The ZIP or postal code of the address. Required in certain countries.
|
|
3892
|
+
sig { returns(T.nilable(String)) }
|
|
3893
|
+
attr_reader :zip
|
|
3894
|
+
|
|
3895
|
+
sig { params(zip: String).void }
|
|
3896
|
+
attr_writer :zip
|
|
3897
|
+
|
|
3886
3898
|
# The trust's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
3887
3899
|
# are disallowed.
|
|
3888
3900
|
sig do
|
|
3889
3901
|
params(
|
|
3890
3902
|
city: String,
|
|
3903
|
+
country: String,
|
|
3891
3904
|
line1: String,
|
|
3905
|
+
line2: String,
|
|
3892
3906
|
state: String,
|
|
3893
|
-
zip: String
|
|
3894
|
-
line2: String
|
|
3907
|
+
zip: String
|
|
3895
3908
|
).returns(T.attached_class)
|
|
3896
3909
|
end
|
|
3897
3910
|
def self.new(
|
|
3898
|
-
# The city of the address.
|
|
3911
|
+
# The city, district, town, or village of the address.
|
|
3899
3912
|
city:,
|
|
3913
|
+
# The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
3914
|
+
#
|
|
3915
|
+
# Defaults to `US`.
|
|
3916
|
+
country:,
|
|
3900
3917
|
# The first line of the address. This is usually the street number and street.
|
|
3901
3918
|
line1:,
|
|
3902
|
-
# The two-letter United States Postal Service (USPS) abbreviation for the state of
|
|
3903
|
-
# the address.
|
|
3904
|
-
state:,
|
|
3905
|
-
# The ZIP code of the address.
|
|
3906
|
-
zip:,
|
|
3907
3919
|
# The second line of the address. This might be the floor or room number.
|
|
3908
|
-
line2: nil
|
|
3920
|
+
line2: nil,
|
|
3921
|
+
# The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
3922
|
+
# state, province, or region of the address. Required in certain countries.
|
|
3923
|
+
state: nil,
|
|
3924
|
+
# The ZIP or postal code of the address. Required in certain countries.
|
|
3925
|
+
zip: nil
|
|
3909
3926
|
)
|
|
3910
3927
|
end
|
|
3911
3928
|
|
|
@@ -3913,10 +3930,11 @@ module Increase
|
|
|
3913
3930
|
override.returns(
|
|
3914
3931
|
{
|
|
3915
3932
|
city: String,
|
|
3933
|
+
country: String,
|
|
3916
3934
|
line1: String,
|
|
3935
|
+
line2: String,
|
|
3917
3936
|
state: String,
|
|
3918
|
-
zip: String
|
|
3919
|
-
line2: String
|
|
3937
|
+
zip: String
|
|
3920
3938
|
}
|
|
3921
3939
|
)
|
|
3922
3940
|
end
|
|
@@ -2417,22 +2417,19 @@ module Increase
|
|
|
2417
2417
|
)
|
|
2418
2418
|
end
|
|
2419
2419
|
|
|
2420
|
-
# The city of the address.
|
|
2420
|
+
# The city, district, town, or village of the address.
|
|
2421
2421
|
sig { returns(String) }
|
|
2422
2422
|
attr_accessor :city
|
|
2423
2423
|
|
|
2424
|
-
# The
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
# The two-letter United States Postal Service (USPS) abbreviation for the state of
|
|
2429
|
-
# the address.
|
|
2424
|
+
# The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
2425
|
+
#
|
|
2426
|
+
# Defaults to `US`.
|
|
2430
2427
|
sig { returns(String) }
|
|
2431
|
-
attr_accessor :
|
|
2428
|
+
attr_accessor :country
|
|
2432
2429
|
|
|
2433
|
-
# The
|
|
2430
|
+
# The first line of the address. This is usually the street number and street.
|
|
2434
2431
|
sig { returns(String) }
|
|
2435
|
-
attr_accessor :
|
|
2432
|
+
attr_accessor :line1
|
|
2436
2433
|
|
|
2437
2434
|
# The second line of the address. This might be the floor or room number.
|
|
2438
2435
|
sig { returns(T.nilable(String)) }
|
|
@@ -2441,29 +2438,49 @@ module Increase
|
|
|
2441
2438
|
sig { params(line2: String).void }
|
|
2442
2439
|
attr_writer :line2
|
|
2443
2440
|
|
|
2441
|
+
# The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2442
|
+
# state, province, or region of the address. Required in certain countries.
|
|
2443
|
+
sig { returns(T.nilable(String)) }
|
|
2444
|
+
attr_reader :state
|
|
2445
|
+
|
|
2446
|
+
sig { params(state: String).void }
|
|
2447
|
+
attr_writer :state
|
|
2448
|
+
|
|
2449
|
+
# The ZIP or postal code of the address. Required in certain countries.
|
|
2450
|
+
sig { returns(T.nilable(String)) }
|
|
2451
|
+
attr_reader :zip
|
|
2452
|
+
|
|
2453
|
+
sig { params(zip: String).void }
|
|
2454
|
+
attr_writer :zip
|
|
2455
|
+
|
|
2444
2456
|
# The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
2445
2457
|
# are disallowed.
|
|
2446
2458
|
sig do
|
|
2447
2459
|
params(
|
|
2448
2460
|
city: String,
|
|
2461
|
+
country: String,
|
|
2449
2462
|
line1: String,
|
|
2463
|
+
line2: String,
|
|
2450
2464
|
state: String,
|
|
2451
|
-
zip: String
|
|
2452
|
-
line2: String
|
|
2465
|
+
zip: String
|
|
2453
2466
|
).returns(T.attached_class)
|
|
2454
2467
|
end
|
|
2455
2468
|
def self.new(
|
|
2456
|
-
# The city of the address.
|
|
2469
|
+
# The city, district, town, or village of the address.
|
|
2457
2470
|
city:,
|
|
2471
|
+
# The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
2472
|
+
#
|
|
2473
|
+
# Defaults to `US`.
|
|
2474
|
+
country:,
|
|
2458
2475
|
# The first line of the address. This is usually the street number and street.
|
|
2459
2476
|
line1:,
|
|
2460
|
-
# The two-letter United States Postal Service (USPS) abbreviation for the state of
|
|
2461
|
-
# the address.
|
|
2462
|
-
state:,
|
|
2463
|
-
# The ZIP code of the address.
|
|
2464
|
-
zip:,
|
|
2465
2477
|
# The second line of the address. This might be the floor or room number.
|
|
2466
|
-
line2: nil
|
|
2478
|
+
line2: nil,
|
|
2479
|
+
# The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2480
|
+
# state, province, or region of the address. Required in certain countries.
|
|
2481
|
+
state: nil,
|
|
2482
|
+
# The ZIP or postal code of the address. Required in certain countries.
|
|
2483
|
+
zip: nil
|
|
2467
2484
|
)
|
|
2468
2485
|
end
|
|
2469
2486
|
|
|
@@ -2471,10 +2488,11 @@ module Increase
|
|
|
2471
2488
|
override.returns(
|
|
2472
2489
|
{
|
|
2473
2490
|
city: String,
|
|
2491
|
+
country: String,
|
|
2474
2492
|
line1: String,
|
|
2493
|
+
line2: String,
|
|
2475
2494
|
state: String,
|
|
2476
|
-
zip: String
|
|
2477
|
-
line2: String
|
|
2495
|
+
zip: String
|
|
2478
2496
|
}
|
|
2479
2497
|
)
|
|
2480
2498
|
end
|
|
@@ -842,6 +842,20 @@ module Increase
|
|
|
842
842
|
Increase::Event::Category::TaggedSymbol
|
|
843
843
|
)
|
|
844
844
|
|
|
845
|
+
# Occurs whenever a SEPA Instant Transfer is created.
|
|
846
|
+
SEPA_INSTANT_TRANSFER_CREATED =
|
|
847
|
+
T.let(
|
|
848
|
+
:"sepa_instant_transfer.created",
|
|
849
|
+
Increase::Event::Category::TaggedSymbol
|
|
850
|
+
)
|
|
851
|
+
|
|
852
|
+
# Occurs whenever a SEPA Instant Transfer is updated.
|
|
853
|
+
SEPA_INSTANT_TRANSFER_UPDATED =
|
|
854
|
+
T.let(
|
|
855
|
+
:"sepa_instant_transfer.updated",
|
|
856
|
+
Increase::Event::Category::TaggedSymbol
|
|
857
|
+
)
|
|
858
|
+
|
|
845
859
|
# Occurs whenever a Swift Transfer is created.
|
|
846
860
|
SWIFT_TRANSFER_CREATED =
|
|
847
861
|
T.let(
|
|
@@ -860,6 +874,20 @@ module Increase
|
|
|
860
874
|
TRANSACTION_CREATED =
|
|
861
875
|
T.let(:"transaction.created", Increase::Event::Category::TaggedSymbol)
|
|
862
876
|
|
|
877
|
+
# Occurs whenever a UK Faster Payment System Transfer is created.
|
|
878
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_CREATED =
|
|
879
|
+
T.let(
|
|
880
|
+
:"uk_faster_payment_system_transfer.created",
|
|
881
|
+
Increase::Event::Category::TaggedSymbol
|
|
882
|
+
)
|
|
883
|
+
|
|
884
|
+
# Occurs whenever a UK Faster Payment System Transfer is updated.
|
|
885
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_UPDATED =
|
|
886
|
+
T.let(
|
|
887
|
+
:"uk_faster_payment_system_transfer.updated",
|
|
888
|
+
Increase::Event::Category::TaggedSymbol
|
|
889
|
+
)
|
|
890
|
+
|
|
863
891
|
# Occurs whenever a Wire Drawdown Request is created.
|
|
864
892
|
WIRE_DRAWDOWN_REQUEST_CREATED =
|
|
865
893
|
T.let(
|
|
@@ -969,6 +969,20 @@ module Increase
|
|
|
969
969
|
Increase::EventListParams::Category::In::TaggedSymbol
|
|
970
970
|
)
|
|
971
971
|
|
|
972
|
+
# Occurs whenever a SEPA Instant Transfer is created.
|
|
973
|
+
SEPA_INSTANT_TRANSFER_CREATED =
|
|
974
|
+
T.let(
|
|
975
|
+
:"sepa_instant_transfer.created",
|
|
976
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
977
|
+
)
|
|
978
|
+
|
|
979
|
+
# Occurs whenever a SEPA Instant Transfer is updated.
|
|
980
|
+
SEPA_INSTANT_TRANSFER_UPDATED =
|
|
981
|
+
T.let(
|
|
982
|
+
:"sepa_instant_transfer.updated",
|
|
983
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
984
|
+
)
|
|
985
|
+
|
|
972
986
|
# Occurs whenever a Swift Transfer is created.
|
|
973
987
|
SWIFT_TRANSFER_CREATED =
|
|
974
988
|
T.let(
|
|
@@ -990,6 +1004,20 @@ module Increase
|
|
|
990
1004
|
Increase::EventListParams::Category::In::TaggedSymbol
|
|
991
1005
|
)
|
|
992
1006
|
|
|
1007
|
+
# Occurs whenever a UK Faster Payment System Transfer is created.
|
|
1008
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_CREATED =
|
|
1009
|
+
T.let(
|
|
1010
|
+
:"uk_faster_payment_system_transfer.created",
|
|
1011
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
1012
|
+
)
|
|
1013
|
+
|
|
1014
|
+
# Occurs whenever a UK Faster Payment System Transfer is updated.
|
|
1015
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_UPDATED =
|
|
1016
|
+
T.let(
|
|
1017
|
+
:"uk_faster_payment_system_transfer.updated",
|
|
1018
|
+
Increase::EventListParams::Category::In::TaggedSymbol
|
|
1019
|
+
)
|
|
1020
|
+
|
|
993
1021
|
# Occurs whenever a Wire Drawdown Request is created.
|
|
994
1022
|
WIRE_DRAWDOWN_REQUEST_CREATED =
|
|
995
1023
|
T.let(
|
|
@@ -990,6 +990,20 @@ module Increase
|
|
|
990
990
|
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
991
991
|
)
|
|
992
992
|
|
|
993
|
+
# Occurs whenever a SEPA Instant Transfer is created.
|
|
994
|
+
SEPA_INSTANT_TRANSFER_CREATED =
|
|
995
|
+
T.let(
|
|
996
|
+
:"sepa_instant_transfer.created",
|
|
997
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
998
|
+
)
|
|
999
|
+
|
|
1000
|
+
# Occurs whenever a SEPA Instant Transfer is updated.
|
|
1001
|
+
SEPA_INSTANT_TRANSFER_UPDATED =
|
|
1002
|
+
T.let(
|
|
1003
|
+
:"sepa_instant_transfer.updated",
|
|
1004
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
1005
|
+
)
|
|
1006
|
+
|
|
993
1007
|
# Occurs whenever a Swift Transfer is created.
|
|
994
1008
|
SWIFT_TRANSFER_CREATED =
|
|
995
1009
|
T.let(
|
|
@@ -1011,6 +1025,20 @@ module Increase
|
|
|
1011
1025
|
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
1012
1026
|
)
|
|
1013
1027
|
|
|
1028
|
+
# Occurs whenever a UK Faster Payment System Transfer is created.
|
|
1029
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_CREATED =
|
|
1030
|
+
T.let(
|
|
1031
|
+
:"uk_faster_payment_system_transfer.created",
|
|
1032
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
1033
|
+
)
|
|
1034
|
+
|
|
1035
|
+
# Occurs whenever a UK Faster Payment System Transfer is updated.
|
|
1036
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_UPDATED =
|
|
1037
|
+
T.let(
|
|
1038
|
+
:"uk_faster_payment_system_transfer.updated",
|
|
1039
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
1040
|
+
)
|
|
1041
|
+
|
|
1014
1042
|
# Occurs whenever a Wire Drawdown Request is created.
|
|
1015
1043
|
WIRE_DRAWDOWN_REQUEST_CREATED =
|
|
1016
1044
|
T.let(
|
|
@@ -988,6 +988,20 @@ module Increase
|
|
|
988
988
|
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
989
989
|
)
|
|
990
990
|
|
|
991
|
+
# Occurs whenever a SEPA Instant Transfer is created.
|
|
992
|
+
SEPA_INSTANT_TRANSFER_CREATED =
|
|
993
|
+
T.let(
|
|
994
|
+
:"sepa_instant_transfer.created",
|
|
995
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
996
|
+
)
|
|
997
|
+
|
|
998
|
+
# Occurs whenever a SEPA Instant Transfer is updated.
|
|
999
|
+
SEPA_INSTANT_TRANSFER_UPDATED =
|
|
1000
|
+
T.let(
|
|
1001
|
+
:"sepa_instant_transfer.updated",
|
|
1002
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
1003
|
+
)
|
|
1004
|
+
|
|
991
1005
|
# Occurs whenever a Swift Transfer is created.
|
|
992
1006
|
SWIFT_TRANSFER_CREATED =
|
|
993
1007
|
T.let(
|
|
@@ -1009,6 +1023,20 @@ module Increase
|
|
|
1009
1023
|
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
1010
1024
|
)
|
|
1011
1025
|
|
|
1026
|
+
# Occurs whenever a UK Faster Payment System Transfer is created.
|
|
1027
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_CREATED =
|
|
1028
|
+
T.let(
|
|
1029
|
+
:"uk_faster_payment_system_transfer.created",
|
|
1030
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
1031
|
+
)
|
|
1032
|
+
|
|
1033
|
+
# Occurs whenever a UK Faster Payment System Transfer is updated.
|
|
1034
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_UPDATED =
|
|
1035
|
+
T.let(
|
|
1036
|
+
:"uk_faster_payment_system_transfer.updated",
|
|
1037
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
1038
|
+
)
|
|
1039
|
+
|
|
1012
1040
|
# Occurs whenever a Wire Drawdown Request is created.
|
|
1013
1041
|
WIRE_DRAWDOWN_REQUEST_CREATED =
|
|
1014
1042
|
T.let(
|
|
@@ -1783,6 +1783,10 @@ module Increase
|
|
|
1783
1783
|
)
|
|
1784
1784
|
end
|
|
1785
1785
|
|
|
1786
|
+
# The three character ACH return code, in the range R01 to R85.
|
|
1787
|
+
sig { returns(String) }
|
|
1788
|
+
attr_accessor :raw_reason_code
|
|
1789
|
+
|
|
1786
1790
|
# The reason for the transfer return.
|
|
1787
1791
|
sig do
|
|
1788
1792
|
returns(
|
|
@@ -1802,6 +1806,7 @@ module Increase
|
|
|
1802
1806
|
# If your transfer is returned, this will contain details of the return.
|
|
1803
1807
|
sig do
|
|
1804
1808
|
params(
|
|
1809
|
+
raw_reason_code: String,
|
|
1805
1810
|
reason:
|
|
1806
1811
|
Increase::InboundACHTransfer::TransferReturn::Reason::OrSymbol,
|
|
1807
1812
|
returned_at: Time,
|
|
@@ -1809,6 +1814,8 @@ module Increase
|
|
|
1809
1814
|
).returns(T.attached_class)
|
|
1810
1815
|
end
|
|
1811
1816
|
def self.new(
|
|
1817
|
+
# The three character ACH return code, in the range R01 to R85.
|
|
1818
|
+
raw_reason_code:,
|
|
1812
1819
|
# The reason for the transfer return.
|
|
1813
1820
|
reason:,
|
|
1814
1821
|
# The time at which the transfer was returned.
|
|
@@ -1821,6 +1828,7 @@ module Increase
|
|
|
1821
1828
|
sig do
|
|
1822
1829
|
override.returns(
|
|
1823
1830
|
{
|
|
1831
|
+
raw_reason_code: String,
|
|
1824
1832
|
reason:
|
|
1825
1833
|
Increase::InboundACHTransfer::TransferReturn::Reason::TaggedSymbol,
|
|
1826
1834
|
returned_at: Time,
|
|
@@ -388,6 +388,13 @@ module Increase
|
|
|
388
388
|
Increase::InboundRealTimePaymentsTransfer::Decline::Reason::TaggedSymbol
|
|
389
389
|
)
|
|
390
390
|
|
|
391
|
+
# The transaction is not allowed per Increase's terms.
|
|
392
|
+
TRANSACTION_NOT_ALLOWED =
|
|
393
|
+
T.let(
|
|
394
|
+
:transaction_not_allowed,
|
|
395
|
+
Increase::InboundRealTimePaymentsTransfer::Decline::Reason::TaggedSymbol
|
|
396
|
+
)
|
|
397
|
+
|
|
391
398
|
sig do
|
|
392
399
|
override.returns(
|
|
393
400
|
T::Array[
|