Class: Increase::Models::WireTransferCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::WireTransferCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/increase/models/wire_transfer_create_params.rb
Overview
Defined Under Namespace
Classes: Creditor, Debtor, Remittance
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier for the account that will send the transfer.
-
#account_number ⇒ String?
The account number for the destination account.
-
#amount ⇒ Integer
The transfer amount in USD cents.
-
#creditor ⇒ Increase::Models::WireTransferCreateParams::Creditor
The person or business that is receiving the funds from the transfer.
-
#debtor ⇒ Increase::Models::WireTransferCreateParams::Debtor?
The person or business whose funds are being transferred.
-
#external_account_id ⇒ String?
The ID of an External Account to initiate a transfer to.
-
#inbound_wire_drawdown_request_id ⇒ String?
The ID of an Inbound Wire Drawdown Request in response to which this transfer is being sent.
-
#remittance ⇒ Increase::Models::WireTransferCreateParams::Remittance
Additional remittance information related to the wire transfer.
-
#require_approval ⇒ Boolean?
Whether the transfer requires explicit approval via the dashboard or API.
-
#routing_number ⇒ String?
The American Bankers’ Association (ABA) Routing Transit Number (RTN) for the destination account.
-
#source_account_number_id ⇒ String?
The ID of an Account Number that will be passed to the wire’s recipient.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(message: ) ⇒ Object
constructor
Unstructured remittance information.
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(message: ) ⇒ Object
Unstructured remittance information. Required if ‘category` is equal to `unstructured`.
|
|
# File 'lib/increase/models/wire_transfer_create_params.rb', line 162
|
Instance Attribute Details
#account_id ⇒ String
The identifier for the account that will send the transfer.
14 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 14 required :account_id, String |
#account_number ⇒ String?
The account number for the destination account.
38 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 38 optional :account_number, String |
#amount ⇒ Integer
The transfer amount in USD cents.
20 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 20 required :amount, Integer |
#creditor ⇒ Increase::Models::WireTransferCreateParams::Creditor
The person or business that is receiving the funds from the transfer.
26 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 26 required :creditor, -> { Increase::WireTransferCreateParams::Creditor } |
#debtor ⇒ Increase::Models::WireTransferCreateParams::Debtor?
The person or business whose funds are being transferred. This is only necessary if you’re transferring from a commingled account. Otherwise, we’ll use the associated entity’s details.
46 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 46 optional :debtor, -> { Increase::WireTransferCreateParams::Debtor } |
#external_account_id ⇒ String?
The ID of an External Account to initiate a transfer to. If this parameter is provided, ‘account_number` and `routing_number` must be absent.
53 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 53 optional :external_account_id, String |
#inbound_wire_drawdown_request_id ⇒ String?
The ID of an Inbound Wire Drawdown Request in response to which this transfer is being sent.
60 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 60 optional :inbound_wire_drawdown_request_id, String |
#remittance ⇒ Increase::Models::WireTransferCreateParams::Remittance
Additional remittance information related to the wire transfer.
32 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 32 required :remittance, -> { Increase::WireTransferCreateParams::Remittance } |
#require_approval ⇒ Boolean?
Whether the transfer requires explicit approval via the dashboard or API.
66 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 66 optional :require_approval, Increase::Internal::Type::Boolean |
#routing_number ⇒ String?
The American Bankers’ Association (ABA) Routing Transit Number (RTN) for the destination account.
73 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 73 optional :routing_number, String |
#source_account_number_id ⇒ String?
The ID of an Account Number that will be passed to the wire’s recipient
79 |
# File 'lib/increase/models/wire_transfer_create_params.rb', line 79 optional :source_account_number_id, String |