Class: ModernTreasury::Models::PaymentActionCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- ModernTreasury::Models::PaymentActionCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/modern_treasury/models/payment_action_create_params.rb
Overview
Instance Attribute Summary collapse
-
#actionable_id ⇒ String?
Optional.
-
#actionable_type ⇒ String?
Optional.
-
#details ⇒ Object?
Optional.
-
#internal_account_id ⇒ String?
Optional.
-
#type ⇒ String
Required.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(type: , actionable_id: nil, actionable_type: nil, details: nil, internal_account_id: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see PaymentActionCreateParams 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(type: , actionable_id: nil, actionable_type: nil, details: nil, internal_account_id: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see ModernTreasury::Models::PaymentActionCreateParams for more details.
|
|
# File 'lib/modern_treasury/models/payment_action_create_params.rb', line 42
|
Instance Attribute Details
#actionable_id ⇒ String?
Optional. The ID of the associated actionable object.
20 |
# File 'lib/modern_treasury/models/payment_action_create_params.rb', line 20 optional :actionable_id, String |
#actionable_type ⇒ String?
Optional. The type of the associated actionable object. One of ‘payment_order`, `expected_payment`. Required if `actionable_id` is passed.
27 |
# File 'lib/modern_treasury/models/payment_action_create_params.rb', line 27 optional :actionable_type, String |
#details ⇒ Object?
Optional. The specifc details of the payment action based on type.
33 |
# File 'lib/modern_treasury/models/payment_action_create_params.rb', line 33 optional :details, ModernTreasury::Internal::Type::Unknown |
#internal_account_id ⇒ String?
Optional. The ID of one of your organization’s internal accounts. Required if ‘actionable_id` is not passed.
40 |
# File 'lib/modern_treasury/models/payment_action_create_params.rb', line 40 optional :internal_account_id, String |
#type ⇒ String
Required. The type of the payment action. Determines the action to be taken.
14 |
# File 'lib/modern_treasury/models/payment_action_create_params.rb', line 14 required :type, String |