Class: Lithic::Models::AccountActivityListResponse::Internal
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::AccountActivityListResponse::Internal
- Defined in:
- lib/lithic/models/account_activity_list_response.rb
Defined Under Namespace
Modules: Category, Result, Status
Instance Attribute Summary collapse
-
#category ⇒ Symbol, Lithic::Models::AccountActivityListResponse::Internal::Category
Transaction category.
-
#created ⇒ Time
ISO 8601 timestamp of when the transaction was created.
-
#currency ⇒ String
Currency of the transaction, represented in ISO 4217 format.
-
#descriptor ⇒ String
Transaction descriptor.
-
#events ⇒ Array<Lithic::Models::FinancialEvent>
List of transaction events.
-
#family ⇒ Symbol, :INTERNAL
INTERNAL - Financial Transaction.
-
#financial_account_token ⇒ String
Financial account token associated with the transaction.
-
#pending_amount ⇒ Integer
Pending amount in cents.
-
#result ⇒ Symbol, Lithic::Models::AccountActivityListResponse::Internal::Result
Transaction result.
-
#settled_amount ⇒ Integer
Settled amount in cents.
-
#status ⇒ Symbol, Lithic::Models::AccountActivityListResponse::Internal::Status
The status of the transaction.
-
#token ⇒ String
Unique identifier for the transaction.
-
#updated ⇒ Time
ISO 8601 timestamp of when the transaction was last updated.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(token:, category:, created:, currency:, descriptor:, events:, financial_account_token:, pending_amount:, result:, settled_amount:, status:, updated:, family: :INTERNAL) ⇒ Object
constructor
Financial transaction with inheritance from unified base transaction.
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(token:, category:, created:, currency:, descriptor:, events:, financial_account_token:, pending_amount:, result:, settled_amount:, status:, updated:, family: :INTERNAL) ⇒ Object
Financial transaction with inheritance from unified base transaction
|
|
# File 'lib/lithic/models/account_activity_list_response.rb', line 112
|
Instance Attribute Details
#category ⇒ Symbol, Lithic::Models::AccountActivityListResponse::Internal::Category
Transaction category
44 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 44 required :category, enum: -> { Lithic::Models::AccountActivityListResponse::Internal::Category } |
#created ⇒ Time
ISO 8601 timestamp of when the transaction was created
50 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 50 required :created, Time |
#currency ⇒ String
Currency of the transaction, represented in ISO 4217 format
56 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 56 required :currency, String |
#descriptor ⇒ String
Transaction descriptor
62 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 62 required :descriptor, String |
#events ⇒ Array<Lithic::Models::FinancialEvent>
List of transaction events
68 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 68 required :events, -> { Lithic::Internal::Type::ArrayOf[Lithic::FinancialEvent] } |
#family ⇒ Symbol, :INTERNAL
INTERNAL - Financial Transaction
74 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 74 required :family, const: :INTERNAL |
#financial_account_token ⇒ String
Financial account token associated with the transaction
80 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 80 required :financial_account_token, String |
#pending_amount ⇒ Integer
Pending amount in cents
86 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 86 required :pending_amount, Integer |
#result ⇒ Symbol, Lithic::Models::AccountActivityListResponse::Internal::Result
Transaction result
92 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 92 required :result, enum: -> { Lithic::Models::AccountActivityListResponse::Internal::Result } |
#settled_amount ⇒ Integer
Settled amount in cents
98 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 98 required :settled_amount, Integer |
#status ⇒ Symbol, Lithic::Models::AccountActivityListResponse::Internal::Status
The status of the transaction
104 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 104 required :status, enum: -> { Lithic::Models::AccountActivityListResponse::Internal::Status } |
#token ⇒ String
Unique identifier for the transaction
38 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 38 required :token, String |
#updated ⇒ Time
ISO 8601 timestamp of when the transaction was last updated
110 |
# File 'lib/lithic/models/account_activity_list_response.rb', line 110 required :updated, Time |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/lithic/models/account_activity_list_response.rb', line 168
|