Class: Increase::Models::RealTimePaymentsTransferCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::RealTimePaymentsTransferCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/increase/models/real_time_payments_transfer_create_params.rb
Overview
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The transfer amount in USD cents.
-
#creditor_name ⇒ String
The name of the transfer’s recipient.
-
#debtor_name ⇒ String?
The name of the transfer’s sender.
-
#destination_account_number ⇒ String?
The destination account number.
-
#destination_routing_number ⇒ String?
The destination American Bankers’ Association (ABA) Routing Transit Number (RTN).
-
#external_account_id ⇒ String?
The ID of an External Account to initiate a transfer to.
-
#remittance_information ⇒ String
Unstructured information that will show on the recipient’s bank statement.
-
#require_approval ⇒ Boolean?
Whether the transfer requires explicit approval via the dashboard or API.
-
#source_account_number_id ⇒ String
The identifier of the Account Number from which to send the transfer.
-
#ultimate_creditor_name ⇒ String?
The name of the ultimate recipient of the transfer.
-
#ultimate_debtor_name ⇒ String?
The name of the ultimate sender of the transfer.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(amount: , creditor_name: , remittance_information: , source_account_number_id: , debtor_name: nil, destination_account_number: nil, destination_routing_number: nil, external_account_id: nil, require_approval: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see RealTimePaymentsTransferCreateParams for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(amount: , creditor_name: , remittance_information: , source_account_number_id: , debtor_name: nil, destination_account_number: nil, destination_routing_number: nil, external_account_id: nil, require_approval: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::RealTimePaymentsTransferCreateParams for more details.
|
|
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 83
|
Instance Attribute Details
#amount ⇒ Integer
The transfer amount in USD cents. For Real-Time Payments transfers, must be positive.
15 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 15 required :amount, Integer |
#creditor_name ⇒ String
The name of the transfer’s recipient.
21 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 21 required :creditor_name, String |
#debtor_name ⇒ String?
The name of the transfer’s sender. If not provided, defaults to the name of the account’s entity.
40 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 40 optional :debtor_name, String |
#destination_account_number ⇒ String?
The destination account number.
46 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 46 optional :destination_account_number, String |
#destination_routing_number ⇒ String?
The destination American Bankers’ Association (ABA) Routing Transit Number (RTN).
53 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 53 optional :destination_routing_number, String |
#external_account_id ⇒ String?
The ID of an External Account to initiate a transfer to. If this parameter is provided, ‘destination_account_number` and `destination_routing_number` must be absent.
61 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 61 optional :external_account_id, String |
#remittance_information ⇒ String
Unstructured information that will show on the recipient’s bank statement.
27 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 27 required :remittance_information, String |
#require_approval ⇒ Boolean?
Whether the transfer requires explicit approval via the dashboard or API.
67 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 67 optional :require_approval, Increase::Internal::Type::Boolean |
#source_account_number_id ⇒ String
The identifier of the Account Number from which to send the transfer.
33 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 33 required :source_account_number_id, String |
#ultimate_creditor_name ⇒ String?
The name of the ultimate recipient of the transfer. Set this if the creditor is an intermediary receiving the payment for someone else.
74 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 74 optional :ultimate_creditor_name, String |
#ultimate_debtor_name ⇒ String?
The name of the ultimate sender of the transfer. Set this if the funds are being sent on behalf of someone who is not the account holder at Increase.
81 |
# File 'lib/increase/models/real_time_payments_transfer_create_params.rb', line 81 optional :ultimate_debtor_name, String |