Class: ModernTreasury::Models::IncomingPaymentDetailCreateAsyncParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- ModernTreasury::Models::IncomingPaymentDetailCreateAsyncParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
-
#amount ⇒ Integer?
Value in specified currency’s smallest unit.
-
#as_of_date ⇒ Date?
Defaults to today.
-
#currency ⇒ Symbol, ...
Defaults to the currency of the originating account.
-
#data ⇒ Object?
An object passed through to the simulated IPD that could reflect what a vendor would pass.
-
#description ⇒ String?
Defaults to a random description.
-
#direction ⇒ Symbol, ...
One of ‘credit`, `debit`.
-
#internal_account_id ⇒ String?
The ID of one of your internal accounts.
-
#type ⇒ Symbol, ...
One of ‘ach`, `wire`, `check`.
-
#virtual_account_id ⇒ String?
An optional parameter to associate the incoming payment detail to a virtual account.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(amount: nil, as_of_date: nil, currency: nil, data: nil, description: nil, direction: nil, internal_account_id: nil, type: nil, virtual_account_id: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see IncomingPaymentDetailCreateAsyncParams 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: nil, as_of_date: nil, currency: nil, data: nil, description: nil, direction: nil, internal_account_id: nil, type: nil, virtual_account_id: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::IncomingPaymentDetailCreateAsyncParams for more details.
|
|
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 67
|
Instance Attribute Details
#amount ⇒ Integer?
Value in specified currency’s smallest unit. e.g. $10 would be represented as 1000.
15 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 15 optional :amount, Integer |
#as_of_date ⇒ Date?
Defaults to today.
21 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 21 optional :as_of_date, Date, nil?: true |
#currency ⇒ Symbol, ...
Defaults to the currency of the originating account.
27 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 27 optional :currency, enum: -> { ModernTreasury::Currency }, nil?: true |
#data ⇒ Object?
An object passed through to the simulated IPD that could reflect what a vendor would pass.
34 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 34 optional :data, ModernTreasury::Internal::Type::Unknown, nil?: true |
#description ⇒ String?
Defaults to a random description.
40 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 40 optional :description, String, nil?: true |
#direction ⇒ Symbol, ...
One of ‘credit`, `debit`.
46 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 46 optional :direction, enum: -> { ModernTreasury::IncomingPaymentDetailCreateAsyncParams::Direction } |
#internal_account_id ⇒ String?
The ID of one of your internal accounts.
52 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 52 optional :internal_account_id, String |
#type ⇒ Symbol, ...
One of ‘ach`, `wire`, `check`.
58 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 58 optional :type, enum: -> { ModernTreasury::IncomingPaymentDetailCreateAsyncParams::Type } |
#virtual_account_id ⇒ String?
An optional parameter to associate the incoming payment detail to a virtual account.
65 |
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 65 optional :virtual_account_id, String, nil?: true |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb', line 99
|