increase 1.348.0 → 1.350.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_create_params.rb +15 -15
- data/lib/increase/models/account_number.rb +3 -3
- data/lib/increase/models/ach_transfer.rb +12 -12
- data/lib/increase/models/balance_lookup.rb +1 -1
- data/lib/increase/models/beneficial_owner_create_params.rb +2 -4
- data/lib/increase/models/beneficial_owner_update_params.rb +2 -4
- data/lib/increase/models/card_dispute.rb +9 -1
- data/lib/increase/models/card_dispute_submit_user_submission_params.rb +4 -0
- data/lib/increase/models/card_payment.rb +58 -58
- data/lib/increase/models/card_purchase_supplement.rb +9 -1
- data/lib/increase/models/card_token_capabilities.rb +2 -2
- data/lib/increase/models/check_deposit.rb +9 -9
- data/lib/increase/models/check_transfer.rb +2 -2
- data/lib/increase/models/check_transfer_create_params.rb +9 -4
- data/lib/increase/models/declined_transaction.rb +12 -9
- data/lib/increase/models/digital_wallet_token.rb +9 -1
- data/lib/increase/models/entity.rb +298 -6
- data/lib/increase/models/entity_create_params.rb +332 -29
- data/lib/increase/models/entity_onboarding_session_list_params.rb +2 -2
- data/lib/increase/models/entity_update_params.rb +472 -15
- data/lib/increase/models/event.rb +3 -0
- data/lib/increase/models/event_list_params.rb +3 -0
- data/lib/increase/models/event_subscription.rb +3 -0
- data/lib/increase/models/event_subscription_create_params.rb +3 -0
- data/lib/increase/models/fednow_transfer.rb +115 -4
- data/lib/increase/models/fednow_transfer_list_params.rb +3 -3
- data/lib/increase/models/inbound_ach_transfer.rb +2 -2
- data/lib/increase/models/inbound_check_deposit.rb +7 -4
- data/lib/increase/models/inbound_fednow_transfer.rb +21 -1
- data/lib/increase/models/inbound_mail_item.rb +14 -1
- data/lib/increase/models/inbound_wire_drawdown_request.rb +12 -1
- data/lib/increase/models/inbound_wire_transfer.rb +4 -4
- data/lib/increase/models/intrafi_exclusion.rb +4 -4
- data/lib/increase/models/lockbox_recipient_create_params.rb +2 -2
- data/lib/increase/models/pending_transaction.rb +20 -20
- data/lib/increase/models/pending_transaction_list_params.rb +5 -7
- data/lib/increase/models/physical_card.rb +9 -1
- data/lib/increase/models/physical_card_create_params.rb +6 -3
- data/lib/increase/models/real_time_decision.rb +18 -18
- data/lib/increase/models/simulations/card_authentication_create_params.rb +2 -2
- data/lib/increase/models/simulations/card_dispute_action_params.rb +6 -6
- data/lib/increase/models/simulations/entity_update_validation_params.rb +3 -3
- data/lib/increase/models/simulations/inbound_check_deposit_adjustment_params.rb +8 -11
- data/lib/increase/models/simulations/interest_payment_create_params.rb +2 -2
- data/lib/increase/models/simulations/pending_transaction_release_inbound_funds_hold_params.rb +2 -2
- data/lib/increase/models/simulations/program_create_params.rb +14 -3
- data/lib/increase/models/transaction.rb +146 -19
- data/lib/increase/models/transaction_list_params.rb +3 -0
- data/lib/increase/models/unwrap_webhook_event.rb +3 -0
- data/lib/increase/models/wire_drawdown_request.rb +12 -1
- data/lib/increase/models/wire_transfer_create_params.rb +2 -2
- data/lib/increase/resources/cards.rb +2 -2
- data/lib/increase/resources/check_transfers.rb +1 -1
- data/lib/increase/resources/entities.rb +10 -2
- data/lib/increase/resources/entity_onboarding_sessions.rb +1 -1
- data/lib/increase/resources/lockbox_recipients.rb +1 -1
- data/lib/increase/resources/physical_cards.rb +2 -1
- data/lib/increase/resources/simulations/card_authentications.rb +1 -1
- data/lib/increase/resources/simulations/card_disputes.rb +2 -2
- data/lib/increase/resources/simulations/inbound_check_deposits.rb +4 -1
- data/lib/increase/resources/simulations/interest_payments.rb +1 -1
- data/lib/increase/resources/simulations/pending_transactions.rb +1 -1
- data/lib/increase/resources/simulations/physical_cards.rb +2 -2
- data/lib/increase/resources/simulations/programs.rb +6 -2
- data/lib/increase/resources/wire_transfers.rb +1 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_create_params.rbi +37 -21
- data/rbi/increase/models/account_number.rbi +3 -3
- data/rbi/increase/models/ach_transfer.rbi +12 -12
- data/rbi/increase/models/balance_lookup.rbi +1 -1
- data/rbi/increase/models/beneficial_owner_create_params.rbi +2 -4
- data/rbi/increase/models/beneficial_owner_update_params.rbi +2 -4
- data/rbi/increase/models/card_dispute.rbi +8 -0
- data/rbi/increase/models/card_dispute_submit_user_submission_params.rbi +3 -0
- data/rbi/increase/models/card_payment.rbi +58 -58
- data/rbi/increase/models/card_purchase_supplement.rbi +8 -0
- data/rbi/increase/models/card_token_capabilities.rbi +2 -2
- data/rbi/increase/models/check_deposit.rbi +9 -9
- data/rbi/increase/models/check_transfer.rbi +2 -2
- data/rbi/increase/models/check_transfer_create_params.rbi +8 -4
- data/rbi/increase/models/declined_transaction.rbi +16 -9
- data/rbi/increase/models/digital_wallet_token.rbi +8 -0
- data/rbi/increase/models/entity.rbi +496 -5
- data/rbi/increase/models/entity_create_params.rbi +547 -28
- data/rbi/increase/models/entity_onboarding_session_list_params.rbi +2 -2
- data/rbi/increase/models/entity_update_params.rbi +814 -14
- data/rbi/increase/models/event.rbi +7 -0
- data/rbi/increase/models/event_list_params.rbi +7 -0
- data/rbi/increase/models/event_subscription.rbi +7 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +7 -0
- data/rbi/increase/models/fednow_transfer.rbi +213 -7
- data/rbi/increase/models/fednow_transfer_list_params.rbi +7 -7
- data/rbi/increase/models/inbound_ach_transfer.rbi +2 -2
- data/rbi/increase/models/inbound_check_deposit.rbi +6 -4
- data/rbi/increase/models/inbound_fednow_transfer.rbi +23 -0
- data/rbi/increase/models/inbound_mail_item.rbi +12 -0
- data/rbi/increase/models/inbound_wire_drawdown_request.rbi +10 -0
- data/rbi/increase/models/inbound_wire_transfer.rbi +4 -4
- data/rbi/increase/models/intrafi_exclusion.rbi +4 -4
- data/rbi/increase/models/lockbox_recipient_create_params.rbi +2 -2
- data/rbi/increase/models/pending_transaction.rbi +20 -20
- data/rbi/increase/models/pending_transaction_list_params.rbi +5 -7
- data/rbi/increase/models/physical_card.rbi +8 -0
- data/rbi/increase/models/physical_card_create_params.rbi +6 -3
- data/rbi/increase/models/real_time_decision.rbi +18 -18
- data/rbi/increase/models/simulations/card_authentication_create_params.rbi +2 -2
- data/rbi/increase/models/simulations/card_dispute_action_params.rbi +6 -6
- data/rbi/increase/models/simulations/entity_update_validation_params.rbi +3 -3
- data/rbi/increase/models/simulations/inbound_check_deposit_adjustment_params.rbi +8 -23
- data/rbi/increase/models/simulations/interest_payment_create_params.rbi +2 -2
- data/rbi/increase/models/simulations/pending_transaction_release_inbound_funds_hold_params.rbi +2 -2
- data/rbi/increase/models/simulations/program_create_params.rbi +15 -2
- data/rbi/increase/models/transaction.rbi +264 -18
- data/rbi/increase/models/transaction_list_params.rbi +7 -0
- data/rbi/increase/models/unwrap_webhook_event.rbi +7 -0
- data/rbi/increase/models/wire_drawdown_request.rbi +10 -0
- data/rbi/increase/models/wire_transfer_create_params.rbi +2 -2
- data/rbi/increase/resources/cards.rbi +2 -2
- data/rbi/increase/resources/check_transfers.rbi +1 -1
- data/rbi/increase/resources/entities.rbi +10 -0
- data/rbi/increase/resources/entity_onboarding_sessions.rbi +1 -1
- data/rbi/increase/resources/lockbox_recipients.rbi +1 -1
- data/rbi/increase/resources/physical_cards.rbi +2 -1
- data/rbi/increase/resources/simulations/card_authentications.rbi +1 -1
- data/rbi/increase/resources/simulations/card_disputes.rbi +2 -2
- data/rbi/increase/resources/simulations/inbound_check_deposits.rbi +4 -1
- data/rbi/increase/resources/simulations/interest_payments.rbi +1 -1
- data/rbi/increase/resources/simulations/pending_transactions.rbi +1 -1
- data/rbi/increase/resources/simulations/physical_cards.rbi +2 -2
- data/rbi/increase/resources/simulations/programs.rbi +5 -1
- data/rbi/increase/resources/wire_transfers.rbi +1 -1
- data/sig/increase/models/account_create_params.rbs +20 -12
- data/sig/increase/models/card_dispute.rbs +5 -0
- data/sig/increase/models/card_purchase_supplement.rbs +5 -0
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/digital_wallet_token.rbs +5 -0
- data/sig/increase/models/entity.rbs +230 -4
- data/sig/increase/models/entity_create_params.rbs +232 -1
- data/sig/increase/models/entity_update_params.rbs +366 -0
- data/sig/increase/models/event.rbs +4 -0
- data/sig/increase/models/event_list_params.rbs +4 -0
- data/sig/increase/models/event_subscription.rbs +4 -0
- data/sig/increase/models/event_subscription_create_params.rbs +4 -0
- data/sig/increase/models/fednow_transfer.rbs +113 -4
- data/sig/increase/models/fednow_transfer_list_params.rbs +4 -4
- data/sig/increase/models/inbound_fednow_transfer.rbs +14 -0
- data/sig/increase/models/inbound_mail_item.rbs +5 -0
- data/sig/increase/models/inbound_wire_drawdown_request.rbs +5 -0
- data/sig/increase/models/pending_transaction.rbs +1 -1
- data/sig/increase/models/pending_transaction_list_params.rbs +1 -1
- data/sig/increase/models/physical_card.rbs +5 -0
- data/sig/increase/models/simulations/entity_update_validation_params.rbs +3 -3
- data/sig/increase/models/simulations/inbound_check_deposit_adjustment_params.rbs +1 -15
- data/sig/increase/models/simulations/program_create_params.rbs +7 -0
- data/sig/increase/models/transaction.rbs +113 -0
- data/sig/increase/models/transaction_list_params.rbs +4 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +4 -0
- data/sig/increase/models/wire_drawdown_request.rbs +5 -0
- data/sig/increase/resources/entities.rbs +2 -0
- data/sig/increase/resources/simulations/programs.rbs +1 -0
- metadata +2 -2
|
@@ -975,9 +975,9 @@ module Increase
|
|
|
975
975
|
required :account_id, String
|
|
976
976
|
|
|
977
977
|
# @!attribute additional_amounts
|
|
978
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
979
|
-
#
|
|
980
|
-
#
|
|
978
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
979
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
980
|
+
# more detailed information about the transaction.
|
|
981
981
|
#
|
|
982
982
|
# @return [Increase::Models::RealTimeDecision::CardAuthorization::AdditionalAmounts]
|
|
983
983
|
required :additional_amounts, -> { Increase::RealTimeDecision::CardAuthorization::AdditionalAmounts }
|
|
@@ -1187,9 +1187,9 @@ module Increase
|
|
|
1187
1187
|
# @param account_id [String] The identifier of the Account the authorization will debit.
|
|
1188
1188
|
#
|
|
1189
1189
|
# @param additional_amounts [Increase::Models::RealTimeDecision::CardAuthorization::AdditionalAmounts]
|
|
1190
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
1191
|
-
#
|
|
1192
|
-
#
|
|
1190
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
1191
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
1192
|
+
# more detailed information about the transaction.
|
|
1193
1193
|
#
|
|
1194
1194
|
# @param approval [Increase::Models::RealTimeDecision::CardAuthorization::Approval, nil]
|
|
1195
1195
|
# Present if and only if `decision` is `approve`. Contains information related to
|
|
@@ -1379,9 +1379,9 @@ module Increase
|
|
|
1379
1379
|
nil?: true
|
|
1380
1380
|
|
|
1381
1381
|
# @!method initialize(clinic:, dental:, original:, prescription:, surcharge:, total_cumulative:, total_healthcare:, transit:, unknown:, vision:)
|
|
1382
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
1383
|
-
#
|
|
1384
|
-
#
|
|
1382
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
1383
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
1384
|
+
# more detailed information about the transaction.
|
|
1385
1385
|
#
|
|
1386
1386
|
# @param clinic [Increase::Models::RealTimeDecision::CardAuthorization::AdditionalAmounts::Clinic, nil]
|
|
1387
1387
|
# The part of this transaction amount that was for clinic-related services.
|
|
@@ -2543,9 +2543,9 @@ module Increase
|
|
|
2543
2543
|
required :account_id, String
|
|
2544
2544
|
|
|
2545
2545
|
# @!attribute additional_amounts
|
|
2546
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
2547
|
-
#
|
|
2548
|
-
#
|
|
2546
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
2547
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
2548
|
+
# more detailed information about the transaction.
|
|
2549
2549
|
#
|
|
2550
2550
|
# @return [Increase::Models::RealTimeDecision::CardBalanceInquiry::AdditionalAmounts]
|
|
2551
2551
|
required :additional_amounts, -> { Increase::RealTimeDecision::CardBalanceInquiry::AdditionalAmounts }
|
|
@@ -2674,9 +2674,9 @@ module Increase
|
|
|
2674
2674
|
# @param account_id [String] The identifier of the Account the authorization will debit.
|
|
2675
2675
|
#
|
|
2676
2676
|
# @param additional_amounts [Increase::Models::RealTimeDecision::CardBalanceInquiry::AdditionalAmounts]
|
|
2677
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
2678
|
-
#
|
|
2679
|
-
#
|
|
2677
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
2678
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
2679
|
+
# more detailed information about the transaction.
|
|
2680
2680
|
#
|
|
2681
2681
|
# @param approval [Increase::Models::RealTimeDecision::CardBalanceInquiry::Approval, nil]
|
|
2682
2682
|
# Present if and only if `decision` is `approve`. Contains information related to
|
|
@@ -2820,9 +2820,9 @@ module Increase
|
|
|
2820
2820
|
nil?: true
|
|
2821
2821
|
|
|
2822
2822
|
# @!method initialize(clinic:, dental:, original:, prescription:, surcharge:, total_cumulative:, total_healthcare:, transit:, unknown:, vision:)
|
|
2823
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
2824
|
-
#
|
|
2825
|
-
#
|
|
2823
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
2824
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
2825
|
+
# more detailed information about the transaction.
|
|
2826
2826
|
#
|
|
2827
2827
|
# @param clinic [Increase::Models::RealTimeDecision::CardBalanceInquiry::AdditionalAmounts::Clinic, nil]
|
|
2828
2828
|
# The part of this transaction amount that was for clinic-related services.
|
|
@@ -48,7 +48,7 @@ module Increase
|
|
|
48
48
|
optional :merchant_country, String
|
|
49
49
|
|
|
50
50
|
# @!attribute merchant_name
|
|
51
|
-
# The name of the merchant
|
|
51
|
+
# The name of the merchant.
|
|
52
52
|
#
|
|
53
53
|
# @return [String, nil]
|
|
54
54
|
optional :merchant_name, String
|
|
@@ -78,7 +78,7 @@ module Increase
|
|
|
78
78
|
#
|
|
79
79
|
# @param merchant_country [String] The country the merchant resides in.
|
|
80
80
|
#
|
|
81
|
-
# @param merchant_name [String] The name of the merchant
|
|
81
|
+
# @param merchant_name [String] The name of the merchant.
|
|
82
82
|
#
|
|
83
83
|
# @param purchase_amount [Integer] The purchase amount in cents.
|
|
84
84
|
#
|
|
@@ -22,8 +22,8 @@ module Increase
|
|
|
22
22
|
required :network, enum: -> { Increase::Simulations::CardDisputeActionParams::Network }
|
|
23
23
|
|
|
24
24
|
# @!attribute visa
|
|
25
|
-
# The Visa-specific parameters for
|
|
26
|
-
#
|
|
25
|
+
# The Visa-specific parameters for taking action on the dispute. Required if and
|
|
26
|
+
# only if `network` is `visa`.
|
|
27
27
|
#
|
|
28
28
|
# @return [Increase::Models::Simulations::CardDisputeActionParams::Visa, nil]
|
|
29
29
|
optional :visa, -> { Increase::Simulations::CardDisputeActionParams::Visa }
|
|
@@ -36,8 +36,8 @@ module Increase
|
|
|
36
36
|
# under the sub-object with the same identifier as the network.
|
|
37
37
|
#
|
|
38
38
|
# @param visa [Increase::Models::Simulations::CardDisputeActionParams::Visa]
|
|
39
|
-
# The Visa-specific parameters for
|
|
40
|
-
#
|
|
39
|
+
# The Visa-specific parameters for taking action on the dispute. Required if and
|
|
40
|
+
# only if `network` is `visa`.
|
|
41
41
|
#
|
|
42
42
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
43
43
|
|
|
@@ -147,8 +147,8 @@ module Increase
|
|
|
147
147
|
-> { Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration }
|
|
148
148
|
|
|
149
149
|
# @!method initialize(action:, accept_chargeback: nil, accept_user_submission: nil, decline_user_prearbitration: nil, receive_merchant_prearbitration: nil, reject: nil, represent: nil, request_further_information: nil, time_out_chargeback: nil, time_out_merchant_prearbitration: nil, time_out_representment: nil, time_out_user_prearbitration: nil)
|
|
150
|
-
# The Visa-specific parameters for
|
|
151
|
-
#
|
|
150
|
+
# The Visa-specific parameters for taking action on the dispute. Required if and
|
|
151
|
+
# only if `network` is `visa`.
|
|
152
152
|
#
|
|
153
153
|
# @param action [Symbol, Increase::Models::Simulations::CardDisputeActionParams::Visa::Action]
|
|
154
154
|
# The action to take. Details specific to the action are required under the
|
|
@@ -48,13 +48,13 @@ module Increase
|
|
|
48
48
|
module Category
|
|
49
49
|
extend Increase::Internal::Type::Enum
|
|
50
50
|
|
|
51
|
-
# The entity's tax identifier could not be verified. Update the tax ID with the [update an entity API](/documentation/api/entities#update-an-entity
|
|
51
|
+
# The entity's tax identifier could not be verified. Update the tax ID with the [update an entity API](/documentation/api/entities#update-an-entity).
|
|
52
52
|
ENTITY_TAX_IDENTIFIER = :entity_tax_identifier
|
|
53
53
|
|
|
54
|
-
# The entity's address could not be validated. Update the address with the [update an entity API](/documentation/api/entities#update-an-entity
|
|
54
|
+
# The entity's address could not be validated. Update the address with the [update an entity API](/documentation/api/entities#update-an-entity).
|
|
55
55
|
ENTITY_ADDRESS = :entity_address
|
|
56
56
|
|
|
57
|
-
# The entity's identity could not be verified. Update the identification with the [update an entity API](/documentation/api/entities#update-an-entity
|
|
57
|
+
# The entity's identity could not be verified. Update the identification with the [update an entity API](/documentation/api/entities#update-an-entity).
|
|
58
58
|
ENTITY_IDENTITY = :entity_identity
|
|
59
59
|
|
|
60
60
|
# A beneficial owner's identity could not be verified. Update the identification with the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
|
|
@@ -15,7 +15,10 @@ module Increase
|
|
|
15
15
|
required :inbound_check_deposit_id, String
|
|
16
16
|
|
|
17
17
|
# @!attribute amount
|
|
18
|
-
# The adjustment amount in cents.
|
|
18
|
+
# The adjustment amount in cents. A positive amount means that the funds are being
|
|
19
|
+
# returned to you by the other bank and is a credit to your account, as happens
|
|
20
|
+
# for a `wrong_payee_credit`. A negative amount is a debit to your account, as
|
|
21
|
+
# happens for a `late_return`. Defaults to the amount of the Inbound Check
|
|
19
22
|
# Deposit.
|
|
20
23
|
#
|
|
21
24
|
# @return [Integer, nil]
|
|
@@ -31,7 +34,10 @@ module Increase
|
|
|
31
34
|
# @param inbound_check_deposit_id [String] The identifier of the Inbound Check Deposit to adjust.
|
|
32
35
|
#
|
|
33
36
|
# @param amount [Integer]
|
|
34
|
-
# The adjustment amount in cents.
|
|
37
|
+
# The adjustment amount in cents. A positive amount means that the funds are being
|
|
38
|
+
# returned to you by the other bank and is a credit to your account, as happens
|
|
39
|
+
# for a `wrong_payee_credit`. A negative amount is a debit to your account, as
|
|
40
|
+
# happens for a `late_return`. Defaults to the amount of the Inbound Check
|
|
35
41
|
# Deposit.
|
|
36
42
|
#
|
|
37
43
|
# @param reason [Symbol, Increase::Models::Simulations::InboundCheckDepositAdjustmentParams::Reason]
|
|
@@ -49,15 +55,6 @@ module Increase
|
|
|
49
55
|
# The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit.
|
|
50
56
|
WRONG_PAYEE_CREDIT = :wrong_payee_credit
|
|
51
57
|
|
|
52
|
-
# The check was deposited with a different amount than what was written on the check.
|
|
53
|
-
ADJUSTED_AMOUNT = :adjusted_amount
|
|
54
|
-
|
|
55
|
-
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
56
|
-
NON_CONFORMING_ITEM = :non_conforming_item
|
|
57
|
-
|
|
58
|
-
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
59
|
-
PAID = :paid
|
|
60
|
-
|
|
61
58
|
# @!method self.values
|
|
62
59
|
# @return [Array<Symbol>]
|
|
63
60
|
end
|
|
@@ -9,7 +9,7 @@ module Increase
|
|
|
9
9
|
include Increase::Internal::Type::RequestParameters
|
|
10
10
|
|
|
11
11
|
# @!attribute account_id
|
|
12
|
-
# The identifier of the Account the Interest Payment should be paid to
|
|
12
|
+
# The identifier of the Account the Interest Payment should be paid to.
|
|
13
13
|
#
|
|
14
14
|
# @return [String]
|
|
15
15
|
required :account_id, String
|
|
@@ -39,7 +39,7 @@ module Increase
|
|
|
39
39
|
optional :period_start, Time
|
|
40
40
|
|
|
41
41
|
# @!method initialize(account_id:, amount:, accrued_on_account_id: nil, period_end: nil, period_start: nil, request_options: {})
|
|
42
|
-
# @param account_id [String] The identifier of the Account the Interest Payment should be paid to
|
|
42
|
+
# @param account_id [String] The identifier of the Account the Interest Payment should be paid to.
|
|
43
43
|
#
|
|
44
44
|
# @param amount [Integer] The interest amount in cents. Must be positive.
|
|
45
45
|
#
|
data/lib/increase/models/simulations/pending_transaction_release_inbound_funds_hold_params.rb
CHANGED
|
@@ -9,7 +9,7 @@ module Increase
|
|
|
9
9
|
include Increase::Internal::Type::RequestParameters
|
|
10
10
|
|
|
11
11
|
# @!attribute pending_transaction_id
|
|
12
|
-
# The pending transaction to release. The pending transaction must have
|
|
12
|
+
# The pending transaction to release. The pending transaction must have an
|
|
13
13
|
# `inbound_funds_hold` source.
|
|
14
14
|
#
|
|
15
15
|
# @return [String]
|
|
@@ -17,7 +17,7 @@ module Increase
|
|
|
17
17
|
|
|
18
18
|
# @!method initialize(pending_transaction_id:, request_options: {})
|
|
19
19
|
# @param pending_transaction_id [String]
|
|
20
|
-
# The pending transaction to release. The pending transaction must have
|
|
20
|
+
# The pending transaction to release. The pending transaction must have an
|
|
21
21
|
# `inbound_funds_hold` source.
|
|
22
22
|
#
|
|
23
23
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
@@ -26,13 +26,20 @@ module Increase
|
|
|
26
26
|
# @return [Integer, nil]
|
|
27
27
|
optional :lending_maximum_extendable_credit, Integer
|
|
28
28
|
|
|
29
|
+
# @!attribute loan_accounts_require_loan_offers
|
|
30
|
+
# Whether opening a loan Account under this Program requires an accepted Loan
|
|
31
|
+
# Offer. Requires `lending_maximum_extendable_credit`. Defaults to `false`.
|
|
32
|
+
#
|
|
33
|
+
# @return [Boolean, nil]
|
|
34
|
+
optional :loan_accounts_require_loan_offers, Increase::Internal::Type::Boolean
|
|
35
|
+
|
|
29
36
|
# @!attribute reserve_account_id
|
|
30
|
-
# The identifier of the Account the Program should be added to
|
|
37
|
+
# The identifier of the Account the Program should be added to.
|
|
31
38
|
#
|
|
32
39
|
# @return [String, nil]
|
|
33
40
|
optional :reserve_account_id, String
|
|
34
41
|
|
|
35
|
-
# @!method initialize(name:, bank: nil, lending_maximum_extendable_credit: nil, reserve_account_id: nil, request_options: {})
|
|
42
|
+
# @!method initialize(name:, bank: nil, lending_maximum_extendable_credit: nil, loan_accounts_require_loan_offers: nil, reserve_account_id: nil, request_options: {})
|
|
36
43
|
# @param name [String] The name of the program being added.
|
|
37
44
|
#
|
|
38
45
|
# @param bank [Symbol, Increase::Models::Simulations::ProgramCreateParams::Bank]
|
|
@@ -41,7 +48,11 @@ module Increase
|
|
|
41
48
|
# @param lending_maximum_extendable_credit [Integer]
|
|
42
49
|
# The maximum extendable credit of the program being added.
|
|
43
50
|
#
|
|
44
|
-
# @param
|
|
51
|
+
# @param loan_accounts_require_loan_offers [Boolean]
|
|
52
|
+
# Whether opening a loan Account under this Program requires an accepted Loan
|
|
53
|
+
# Offer. Requires `lending_maximum_extendable_credit`. Defaults to `false`.
|
|
54
|
+
#
|
|
55
|
+
# @param reserve_account_id [String] The identifier of the Account the Program should be added to.
|
|
45
56
|
#
|
|
46
57
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
47
58
|
|
|
@@ -381,6 +381,19 @@ module Increase
|
|
|
381
381
|
-> { Increase::Transaction::Source::FednowTransferAcknowledgement },
|
|
382
382
|
nil?: true
|
|
383
383
|
|
|
384
|
+
# @!attribute fednow_transfer_return
|
|
385
|
+
# A FedNow Transfer Return object. This field will be present in the JSON response
|
|
386
|
+
# if and only if `category` is equal to `fednow_transfer_return`. A FedNow
|
|
387
|
+
# Transfer Return is created when a FedNow Transfer sent from Increase is returned
|
|
388
|
+
# by the recipient's bank.
|
|
389
|
+
#
|
|
390
|
+
# @return [Increase::Models::Transaction::Source::FednowTransferReturn, nil]
|
|
391
|
+
optional :fednow_transfer_return,
|
|
392
|
+
-> {
|
|
393
|
+
Increase::Transaction::Source::FednowTransferReturn
|
|
394
|
+
},
|
|
395
|
+
nil?: true
|
|
396
|
+
|
|
384
397
|
# @!attribute fee_payment
|
|
385
398
|
# A Fee Payment object. This field will be present in the JSON response if and
|
|
386
399
|
# only if `category` is equal to `fee_payment`. A Fee Payment represents a payment
|
|
@@ -414,7 +427,7 @@ module Increase
|
|
|
414
427
|
# An Inbound Check Adjustment object. This field will be present in the JSON
|
|
415
428
|
# response if and only if `category` is equal to `inbound_check_adjustment`. An
|
|
416
429
|
# Inbound Check Adjustment is created when Increase receives an adjustment for a
|
|
417
|
-
# check or return deposited through
|
|
430
|
+
# check or return deposited through Check 21.
|
|
418
431
|
#
|
|
419
432
|
# @return [Increase::Models::Transaction::Source::InboundCheckAdjustment, nil]
|
|
420
433
|
optional :inbound_check_adjustment,
|
|
@@ -562,7 +575,7 @@ module Increase
|
|
|
562
575
|
},
|
|
563
576
|
nil?: true
|
|
564
577
|
|
|
565
|
-
# @!method initialize(category:, account_revenue_payment: nil, account_transfer_intention: nil, ach_transfer_intention: nil, ach_transfer_rejection: nil, ach_transfer_return: nil, blockchain_offramp_transfer_settlement: nil, blockchain_onramp_transfer_intention: nil, card_dispute_acceptance: nil, card_dispute_financial: nil, card_dispute_loss: nil, card_financial: nil, card_push_transfer_acceptance: nil, card_refund: nil, card_revenue_payment: nil, card_settlement: nil, cashback_payment: nil, check_deposit_acceptance: nil, check_deposit_return: nil, check_transfer_deposit: nil, fednow_transfer_acknowledgement: nil, fee_payment: nil, inbound_ach_transfer: nil, inbound_ach_transfer_return_intention: nil, inbound_check_adjustment: nil, inbound_check_deposit_return_intention: nil, inbound_fednow_transfer_confirmation: nil, inbound_real_time_payments_transfer_confirmation: nil, inbound_wire_reversal: nil, inbound_wire_transfer: nil, inbound_wire_transfer_reversal: nil, interest_payment: nil, internal_source: nil, other: nil, real_time_payments_transfer_acknowledgement: nil, sample_funds: nil, swift_transfer_intention: nil, swift_transfer_return: nil, wire_transfer_intention: nil)
|
|
578
|
+
# @!method initialize(category:, account_revenue_payment: nil, account_transfer_intention: nil, ach_transfer_intention: nil, ach_transfer_rejection: nil, ach_transfer_return: nil, blockchain_offramp_transfer_settlement: nil, blockchain_onramp_transfer_intention: nil, card_dispute_acceptance: nil, card_dispute_financial: nil, card_dispute_loss: nil, card_financial: nil, card_push_transfer_acceptance: nil, card_refund: nil, card_revenue_payment: nil, card_settlement: nil, cashback_payment: nil, check_deposit_acceptance: nil, check_deposit_return: nil, check_transfer_deposit: nil, fednow_transfer_acknowledgement: nil, fednow_transfer_return: nil, fee_payment: nil, inbound_ach_transfer: nil, inbound_ach_transfer_return_intention: nil, inbound_check_adjustment: nil, inbound_check_deposit_return_intention: nil, inbound_fednow_transfer_confirmation: nil, inbound_real_time_payments_transfer_confirmation: nil, inbound_wire_reversal: nil, inbound_wire_transfer: nil, inbound_wire_transfer_reversal: nil, interest_payment: nil, internal_source: nil, other: nil, real_time_payments_transfer_acknowledgement: nil, sample_funds: nil, swift_transfer_intention: nil, swift_transfer_return: nil, wire_transfer_intention: nil)
|
|
566
579
|
# This is an object giving more details on the network-level event that caused the
|
|
567
580
|
# Transaction. Note that for backwards compatibility reasons, additional
|
|
568
581
|
# undocumented keys may appear in this object. These should be treated as
|
|
@@ -695,6 +708,12 @@ module Increase
|
|
|
695
708
|
# `fednow_transfer_acknowledgement`. A FedNow Transfer Acknowledgement is created
|
|
696
709
|
# when a FedNow Transfer sent from Increase is acknowledged by the receiving bank.
|
|
697
710
|
#
|
|
711
|
+
# @param fednow_transfer_return [Increase::Models::Transaction::Source::FednowTransferReturn, nil]
|
|
712
|
+
# A FedNow Transfer Return object. This field will be present in the JSON response
|
|
713
|
+
# if and only if `category` is equal to `fednow_transfer_return`. A FedNow
|
|
714
|
+
# Transfer Return is created when a FedNow Transfer sent from Increase is returned
|
|
715
|
+
# by the recipient's bank.
|
|
716
|
+
#
|
|
698
717
|
# @param fee_payment [Increase::Models::Transaction::Source::FeePayment, nil]
|
|
699
718
|
# A Fee Payment object. This field will be present in the JSON response if and
|
|
700
719
|
# only if `category` is equal to `fee_payment`. A Fee Payment represents a payment
|
|
@@ -717,7 +736,7 @@ module Increase
|
|
|
717
736
|
# An Inbound Check Adjustment object. This field will be present in the JSON
|
|
718
737
|
# response if and only if `category` is equal to `inbound_check_adjustment`. An
|
|
719
738
|
# Inbound Check Adjustment is created when Increase receives an adjustment for a
|
|
720
|
-
# check or return deposited through
|
|
739
|
+
# check or return deposited through Check 21.
|
|
721
740
|
#
|
|
722
741
|
# @param inbound_check_deposit_return_intention [Increase::Models::Transaction::Source::InboundCheckDepositReturnIntention, nil]
|
|
723
742
|
# An Inbound Check Deposit Return Intention object. This field will be present in
|
|
@@ -854,6 +873,9 @@ module Increase
|
|
|
854
873
|
# FedNow Transfer Acknowledgement: details will be under the `fednow_transfer_acknowledgement` object.
|
|
855
874
|
FEDNOW_TRANSFER_ACKNOWLEDGEMENT = :fednow_transfer_acknowledgement
|
|
856
875
|
|
|
876
|
+
# FedNow Transfer Return: details will be under the `fednow_transfer_return` object.
|
|
877
|
+
FEDNOW_TRANSFER_RETURN = :fednow_transfer_return
|
|
878
|
+
|
|
857
879
|
# Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
|
|
858
880
|
CHECK_TRANSFER_DEPOSIT = :check_transfer_deposit
|
|
859
881
|
|
|
@@ -1678,9 +1700,9 @@ module Increase
|
|
|
1678
1700
|
required :actioner, enum: -> { Increase::Transaction::Source::CardFinancial::Actioner }
|
|
1679
1701
|
|
|
1680
1702
|
# @!attribute additional_amounts
|
|
1681
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
1682
|
-
#
|
|
1683
|
-
#
|
|
1703
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
1704
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
1705
|
+
# more detailed information about the transaction.
|
|
1684
1706
|
#
|
|
1685
1707
|
# @return [Increase::Models::Transaction::Source::CardFinancial::AdditionalAmounts]
|
|
1686
1708
|
required :additional_amounts, -> { Increase::Transaction::Source::CardFinancial::AdditionalAmounts }
|
|
@@ -1866,9 +1888,9 @@ module Increase
|
|
|
1866
1888
|
# stand-in processing, or the user through a real-time decision.
|
|
1867
1889
|
#
|
|
1868
1890
|
# @param additional_amounts [Increase::Models::Transaction::Source::CardFinancial::AdditionalAmounts]
|
|
1869
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
1870
|
-
#
|
|
1871
|
-
#
|
|
1891
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
1892
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
1893
|
+
# more detailed information about the transaction.
|
|
1872
1894
|
#
|
|
1873
1895
|
# @param amount [Integer]
|
|
1874
1896
|
# The pending amount in the minor unit of the transaction's currency. For dollars,
|
|
@@ -2057,9 +2079,9 @@ module Increase
|
|
|
2057
2079
|
nil?: true
|
|
2058
2080
|
|
|
2059
2081
|
# @!method initialize(clinic:, dental:, original:, prescription:, surcharge:, total_cumulative:, total_healthcare:, transit:, unknown:, vision:)
|
|
2060
|
-
# Additional amounts associated with the card authorization, such as ATM
|
|
2061
|
-
#
|
|
2062
|
-
#
|
|
2082
|
+
# Additional amounts associated with the card authorization, such as ATM surcharge
|
|
2083
|
+
# fees. These are usually a subset of the `amount` field and are used to provide
|
|
2084
|
+
# more detailed information about the transaction.
|
|
2063
2085
|
#
|
|
2064
2086
|
# @param clinic [Increase::Models::Transaction::Source::CardFinancial::AdditionalAmounts::Clinic, nil]
|
|
2065
2087
|
# The part of this transaction amount that was for clinic-related services.
|
|
@@ -6855,7 +6877,7 @@ module Increase
|
|
|
6855
6877
|
# @!attribute bank_of_first_deposit_routing_number
|
|
6856
6878
|
# The American Bankers' Association (ABA) Routing Transit Number (RTN) for the
|
|
6857
6879
|
# bank depositing this check. In some rare cases, this is not transmitted via
|
|
6858
|
-
#
|
|
6880
|
+
# Check 21 and the value will be null.
|
|
6859
6881
|
#
|
|
6860
6882
|
# @return [String, nil]
|
|
6861
6883
|
required :bank_of_first_deposit_routing_number, String, nil?: true
|
|
@@ -6912,7 +6934,7 @@ module Increase
|
|
|
6912
6934
|
# @param bank_of_first_deposit_routing_number [String, nil]
|
|
6913
6935
|
# The American Bankers' Association (ABA) Routing Transit Number (RTN) for the
|
|
6914
6936
|
# bank depositing this check. In some rare cases, this is not transmitted via
|
|
6915
|
-
#
|
|
6937
|
+
# Check 21 and the value will be null.
|
|
6916
6938
|
#
|
|
6917
6939
|
# @param deposited_at [Time] When the check was deposited.
|
|
6918
6940
|
#
|
|
@@ -6964,6 +6986,108 @@ module Increase
|
|
|
6964
6986
|
# @param transfer_id [String] The identifier of the FedNow Transfer that led to this Transaction.
|
|
6965
6987
|
end
|
|
6966
6988
|
|
|
6989
|
+
# @see Increase::Models::Transaction::Source#fednow_transfer_return
|
|
6990
|
+
class FednowTransferReturn < Increase::Internal::Type::BaseModel
|
|
6991
|
+
# @!attribute amount
|
|
6992
|
+
# The returned amount in USD cents. This is always a positive number.
|
|
6993
|
+
#
|
|
6994
|
+
# @return [Integer]
|
|
6995
|
+
required :amount, Integer
|
|
6996
|
+
|
|
6997
|
+
# @!attribute return_reason_additional_information
|
|
6998
|
+
# Additional information about the return provided by the recipient's bank.
|
|
6999
|
+
#
|
|
7000
|
+
# @return [String, nil]
|
|
7001
|
+
required :return_reason_additional_information, String, nil?: true
|
|
7002
|
+
|
|
7003
|
+
# @!attribute return_reason_code
|
|
7004
|
+
# The reason the transfer was returned as provided by the recipient's bank.
|
|
7005
|
+
#
|
|
7006
|
+
# @return [Symbol, Increase::Models::Transaction::Source::FednowTransferReturn::ReturnReasonCode]
|
|
7007
|
+
required :return_reason_code,
|
|
7008
|
+
enum: -> { Increase::Transaction::Source::FednowTransferReturn::ReturnReasonCode }
|
|
7009
|
+
|
|
7010
|
+
# @!attribute transfer_id
|
|
7011
|
+
# The identifier of the FedNow Transfer that led to this Transaction.
|
|
7012
|
+
#
|
|
7013
|
+
# @return [String]
|
|
7014
|
+
required :transfer_id, String
|
|
7015
|
+
|
|
7016
|
+
# @!method initialize(amount:, return_reason_additional_information:, return_reason_code:, transfer_id:)
|
|
7017
|
+
# A FedNow Transfer Return object. This field will be present in the JSON response
|
|
7018
|
+
# if and only if `category` is equal to `fednow_transfer_return`. A FedNow
|
|
7019
|
+
# Transfer Return is created when a FedNow Transfer sent from Increase is returned
|
|
7020
|
+
# by the recipient's bank.
|
|
7021
|
+
#
|
|
7022
|
+
# @param amount [Integer] The returned amount in USD cents. This is always a positive number.
|
|
7023
|
+
#
|
|
7024
|
+
# @param return_reason_additional_information [String, nil]
|
|
7025
|
+
# Additional information about the return provided by the recipient's bank.
|
|
7026
|
+
#
|
|
7027
|
+
# @param return_reason_code [Symbol, Increase::Models::Transaction::Source::FednowTransferReturn::ReturnReasonCode]
|
|
7028
|
+
# The reason the transfer was returned as provided by the recipient's bank.
|
|
7029
|
+
#
|
|
7030
|
+
# @param transfer_id [String] The identifier of the FedNow Transfer that led to this Transaction.
|
|
7031
|
+
|
|
7032
|
+
# The reason the transfer was returned as provided by the recipient's bank.
|
|
7033
|
+
#
|
|
7034
|
+
# @see Increase::Models::Transaction::Source::FednowTransferReturn#return_reason_code
|
|
7035
|
+
module ReturnReasonCode
|
|
7036
|
+
extend Increase::Internal::Type::Enum
|
|
7037
|
+
|
|
7038
|
+
# The destination account is closed. Corresponds to the FedNow reason codes `AC04` and `AC07`.
|
|
7039
|
+
ACCOUNT_CLOSED = :account_closed
|
|
7040
|
+
|
|
7041
|
+
# The destination account is currently blocked from receiving transactions. Corresponds to the FedNow reason code `AC06`.
|
|
7042
|
+
ACCOUNT_BLOCKED = :account_blocked
|
|
7043
|
+
|
|
7044
|
+
# The recipient's bank was not a valid agent for this transfer. Corresponds to the FedNow reason codes `AC14` and `AGNT`.
|
|
7045
|
+
INVALID_AGENT = :invalid_agent
|
|
7046
|
+
|
|
7047
|
+
# The destination account does not exist. Corresponds to the FedNow reason code `AC03`.
|
|
7048
|
+
INVALID_CREDITOR_ACCOUNT_NUMBER = :invalid_creditor_account_number
|
|
7049
|
+
|
|
7050
|
+
# The destination account number was incorrect. Corresponds to the FedNow reason code `AC01`.
|
|
7051
|
+
INCORRECT_ACCOUNT_NUMBER = :incorrect_account_number
|
|
7052
|
+
|
|
7053
|
+
# The destination account holder is deceased. Corresponds to the FedNow reason code `MD07`.
|
|
7054
|
+
END_CUSTOMER_DECEASED = :end_customer_deceased
|
|
7055
|
+
|
|
7056
|
+
# The transfer was not permitted by the recipient's bank. Corresponds to the FedNow reason code `AG01`.
|
|
7057
|
+
TRANSACTION_FORBIDDEN = :transaction_forbidden
|
|
7058
|
+
|
|
7059
|
+
# The transfer was returned for a regulatory reason at the recipient's bank. Corresponds to the FedNow reason code `RR04`.
|
|
7060
|
+
REGULATORY_REASON = :regulatory_reason
|
|
7061
|
+
|
|
7062
|
+
# The transfer was reported as fraudulent. Corresponds to the FedNow reason code `FR01`.
|
|
7063
|
+
FRAUD = :fraud
|
|
7064
|
+
|
|
7065
|
+
# The transfer duplicated another transfer. Corresponds to the FedNow reason codes `AM05` and `DUPL`.
|
|
7066
|
+
DUPLICATION = :duplication
|
|
7067
|
+
|
|
7068
|
+
# The transfer amount was incorrect. Corresponds to the FedNow reason code `AM09`.
|
|
7069
|
+
WRONG_AMOUNT = :wrong_amount
|
|
7070
|
+
|
|
7071
|
+
# The transfer was returned at the request of the recipient's customer. Corresponds to the FedNow reason code `CUST`.
|
|
7072
|
+
REQUESTED_BY_CUSTOMER = :requested_by_customer
|
|
7073
|
+
|
|
7074
|
+
# The recipient's bank could not apply the funds. Corresponds to the FedNow reason code `RUTA`.
|
|
7075
|
+
UNABLE_TO_APPLY = :unable_to_apply
|
|
7076
|
+
|
|
7077
|
+
# The recipient's bank did not specify a reason. Corresponds to the FedNow reason codes `MS02` and `MS03`.
|
|
7078
|
+
NOT_SPECIFIED = :not_specified
|
|
7079
|
+
|
|
7080
|
+
# The reason is provided as narrative information in the additional information field. Corresponds to the FedNow reason code `NARR`.
|
|
7081
|
+
NARRATIVE = :narrative
|
|
7082
|
+
|
|
7083
|
+
# The transfer was returned for some other reason.
|
|
7084
|
+
OTHER = :other
|
|
7085
|
+
|
|
7086
|
+
# @!method self.values
|
|
7087
|
+
# @return [Array<Symbol>]
|
|
7088
|
+
end
|
|
7089
|
+
end
|
|
7090
|
+
|
|
6967
7091
|
# @see Increase::Models::Transaction::Source#fee_payment
|
|
6968
7092
|
class FeePayment < Increase::Internal::Type::BaseModel
|
|
6969
7093
|
# @!attribute amount
|
|
@@ -7231,7 +7355,8 @@ module Increase
|
|
|
7231
7355
|
required :adjusted_transaction_id, String
|
|
7232
7356
|
|
|
7233
7357
|
# @!attribute amount
|
|
7234
|
-
# The amount of the check adjustment.
|
|
7358
|
+
# The amount of the check adjustment in USD cents. A positive amount is a credit
|
|
7359
|
+
# to your account and a negative amount is a debit.
|
|
7235
7360
|
#
|
|
7236
7361
|
# @return [Integer]
|
|
7237
7362
|
required :amount, Integer
|
|
@@ -7246,11 +7371,13 @@ module Increase
|
|
|
7246
7371
|
# An Inbound Check Adjustment object. This field will be present in the JSON
|
|
7247
7372
|
# response if and only if `category` is equal to `inbound_check_adjustment`. An
|
|
7248
7373
|
# Inbound Check Adjustment is created when Increase receives an adjustment for a
|
|
7249
|
-
# check or return deposited through
|
|
7374
|
+
# check or return deposited through Check 21.
|
|
7250
7375
|
#
|
|
7251
7376
|
# @param adjusted_transaction_id [String] The ID of the transaction that was adjusted.
|
|
7252
7377
|
#
|
|
7253
|
-
# @param amount [Integer]
|
|
7378
|
+
# @param amount [Integer]
|
|
7379
|
+
# The amount of the check adjustment in USD cents. A positive amount is a credit
|
|
7380
|
+
# to your account and a negative amount is a debit.
|
|
7254
7381
|
#
|
|
7255
7382
|
# @param reason [Symbol, Increase::Models::Transaction::Source::InboundCheckAdjustment::Reason]
|
|
7256
7383
|
# The reason for the adjustment.
|
|
@@ -7644,7 +7771,7 @@ module Increase
|
|
|
7644
7771
|
required :input_message_accountability_data, String, nil?: true
|
|
7645
7772
|
|
|
7646
7773
|
# @!attribute instructing_agent_routing_number
|
|
7647
|
-
# The American
|
|
7774
|
+
# The American Bankers' Association (ABA) routing number of the bank that sent the
|
|
7648
7775
|
# wire.
|
|
7649
7776
|
#
|
|
7650
7777
|
# @return [String, nil]
|
|
@@ -7717,7 +7844,7 @@ module Increase
|
|
|
7717
7844
|
# service and is helpful when debugging wires with the originating bank.
|
|
7718
7845
|
#
|
|
7719
7846
|
# @param instructing_agent_routing_number [String, nil]
|
|
7720
|
-
# The American
|
|
7847
|
+
# The American Bankers' Association (ABA) routing number of the bank that sent the
|
|
7721
7848
|
# wire.
|
|
7722
7849
|
#
|
|
7723
7850
|
# @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
|
|
@@ -131,6 +131,9 @@ module Increase
|
|
|
131
131
|
# FedNow Transfer Acknowledgement: details will be under the `fednow_transfer_acknowledgement` object.
|
|
132
132
|
FEDNOW_TRANSFER_ACKNOWLEDGEMENT = :fednow_transfer_acknowledgement
|
|
133
133
|
|
|
134
|
+
# FedNow Transfer Return: details will be under the `fednow_transfer_return` object.
|
|
135
|
+
FEDNOW_TRANSFER_RETURN = :fednow_transfer_return
|
|
136
|
+
|
|
134
137
|
# Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
|
|
135
138
|
CHECK_TRANSFER_DEPOSIT = :check_transfer_deposit
|
|
136
139
|
|
|
@@ -369,6 +369,9 @@ module Increase
|
|
|
369
369
|
# Occurs whenever a Physical Check is updated.
|
|
370
370
|
PHYSICAL_CHECK_UPDATED = :"physical_check.updated"
|
|
371
371
|
|
|
372
|
+
# Occurs whenever a Plaid Processor Token is created.
|
|
373
|
+
PLAID_PROCESSOR_TOKEN_CREATED = :"plaid_processor_token.created"
|
|
374
|
+
|
|
372
375
|
# Occurs whenever a Checkbook is created.
|
|
373
376
|
CHECKBOOK_CREATED = :"checkbook.created"
|
|
374
377
|
|
|
@@ -10,6 +10,13 @@ module Increase
|
|
|
10
10
|
# @return [String]
|
|
11
11
|
required :id, String
|
|
12
12
|
|
|
13
|
+
# @!attribute account_id
|
|
14
|
+
# The Account to which the debtor—the recipient of this request—is being requested
|
|
15
|
+
# to send funds.
|
|
16
|
+
#
|
|
17
|
+
# @return [String]
|
|
18
|
+
required :account_id, String
|
|
19
|
+
|
|
13
20
|
# @!attribute account_number_id
|
|
14
21
|
# The Account Number to which the debtor—the recipient of this request—is being
|
|
15
22
|
# requested to send funds.
|
|
@@ -135,7 +142,7 @@ module Increase
|
|
|
135
142
|
# @return [String]
|
|
136
143
|
required :unstructured_remittance_information, String
|
|
137
144
|
|
|
138
|
-
# @!method initialize(id:, account_number_id:, amount:, created_at:, creditor_address:, creditor_name:, currency:, debtor_account_number:, debtor_address:, debtor_external_account_id:, debtor_name:, debtor_routing_number:, end_to_end_identification:, fulfillment_inbound_wire_transfer_id:, idempotency_key:, status:, submission:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:)
|
|
145
|
+
# @!method initialize(id:, account_id:, account_number_id:, amount:, created_at:, creditor_address:, creditor_name:, currency:, debtor_account_number:, debtor_address:, debtor_external_account_id:, debtor_name:, debtor_routing_number:, end_to_end_identification:, fulfillment_inbound_wire_transfer_id:, idempotency_key:, status:, submission:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:)
|
|
139
146
|
# Wire drawdown requests enable you to request that someone else send you a wire.
|
|
140
147
|
# Because there is nuance to making sure your counterparty's bank processes these
|
|
141
148
|
# correctly, we ask that you reach out to
|
|
@@ -145,6 +152,10 @@ module Increase
|
|
|
145
152
|
#
|
|
146
153
|
# @param id [String] The Wire drawdown request identifier.
|
|
147
154
|
#
|
|
155
|
+
# @param account_id [String]
|
|
156
|
+
# The Account to which the debtor—the recipient of this request—is being requested
|
|
157
|
+
# to send funds.
|
|
158
|
+
#
|
|
148
159
|
# @param account_number_id [String]
|
|
149
160
|
# The Account Number to which the debtor—the recipient of this request—is being
|
|
150
161
|
# requested to send funds.
|
|
@@ -73,7 +73,7 @@ module Increase
|
|
|
73
73
|
optional :routing_number, String
|
|
74
74
|
|
|
75
75
|
# @!attribute source_account_number_id
|
|
76
|
-
# The ID of an Account Number that will be passed to the wire's recipient
|
|
76
|
+
# The ID of an Account Number that will be passed to the wire's recipient.
|
|
77
77
|
#
|
|
78
78
|
# @return [String, nil]
|
|
79
79
|
optional :source_account_number_id, String
|
|
@@ -112,7 +112,7 @@ module Increase
|
|
|
112
112
|
# destination account.
|
|
113
113
|
#
|
|
114
114
|
# @param source_account_number_id [String]
|
|
115
|
-
# The ID of an Account Number that will be passed to the wire's recipient
|
|
115
|
+
# The ID of an Account Number that will be passed to the wire's recipient.
|
|
116
116
|
#
|
|
117
117
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
118
118
|
|
|
@@ -172,8 +172,8 @@ module Increase
|
|
|
172
172
|
)
|
|
173
173
|
end
|
|
174
174
|
|
|
175
|
-
# Sensitive details for a Card include the primary account number,
|
|
176
|
-
# verification code, and PIN.
|
|
175
|
+
# Sensitive details for a Card include the primary account number, expiration,
|
|
176
|
+
# card verification code, and PIN.
|
|
177
177
|
#
|
|
178
178
|
# @overload details(card_id, request_options: {})
|
|
179
179
|
#
|
|
@@ -44,7 +44,7 @@ module Increase
|
|
|
44
44
|
# If provided, the check will be valid on or before this date. After this date,
|
|
45
45
|
# the check transfer will be automatically stopped and deposits will not be
|
|
46
46
|
# accepted. For checks printed by Increase, this date is included on the check as
|
|
47
|
-
# its
|
|
47
|
+
# its expiration.
|
|
48
48
|
#
|
|
49
49
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
|
50
50
|
#
|