Class: Lithic::Models::Cards::AggregateBalanceListResponse
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::Cards::AggregateBalanceListResponse
- Defined in:
- lib/lithic/models/cards/aggregate_balance_list_response.rb
Overview
Instance Attribute Summary collapse
-
#available_amount ⇒ Integer
Funds available for spend in the currency’s smallest unit (e.g., cents for USD).
-
#created ⇒ Time
Date and time for when the balance was first created.
-
#currency ⇒ String
3-character alphabetic ISO 4217 code for the local currency of the balance.
-
#last_card_token ⇒ String
Globally unique identifier for the card that had its balance updated most recently.
-
#last_transaction_event_token ⇒ String
Globally unique identifier for the last transaction event that impacted this balance.
-
#last_transaction_token ⇒ String
Globally unique identifier for the last transaction that impacted this balance.
-
#pending_amount ⇒ Integer
Funds not available for spend due to card authorizations or pending ACH release.
-
#total_amount ⇒ Integer
The sum of available and pending balance in the currency’s smallest unit (e.g., cents for USD).
-
#updated ⇒ Time
Date and time for when the balance was last updated.
Instance Method Summary collapse
-
#initialize(available_amount:, created:, currency:, last_card_token:, last_transaction_event_token:, last_transaction_token:, pending_amount:, total_amount:, updated:) ⇒ Object
constructor
Some parameter documentations has been truncated, see AggregateBalanceListResponse for more details.
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(available_amount:, created:, currency:, last_card_token:, last_transaction_event_token:, last_transaction_token:, pending_amount:, total_amount:, updated:) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::Cards::AggregateBalanceListResponse for more details.
Card Aggregate Balance across all end-user accounts
|
|
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 66
|
Instance Attribute Details
#available_amount ⇒ Integer
Funds available for spend in the currency’s smallest unit (e.g., cents for USD)
12 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 12 required :available_amount, Integer |
#created ⇒ Time
Date and time for when the balance was first created.
18 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 18 required :created, Time |
#currency ⇒ String
3-character alphabetic ISO 4217 code for the local currency of the balance.
24 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 24 required :currency, String |
#last_card_token ⇒ String
Globally unique identifier for the card that had its balance updated most recently
31 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 31 required :last_card_token, String |
#last_transaction_event_token ⇒ String
Globally unique identifier for the last transaction event that impacted this balance
38 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 38 required :last_transaction_event_token, String |
#last_transaction_token ⇒ String
Globally unique identifier for the last transaction that impacted this balance
44 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 44 required :last_transaction_token, String |
#pending_amount ⇒ Integer
Funds not available for spend due to card authorizations or pending ACH release. Shown in the currency’s smallest unit (e.g., cents for USD)
51 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 51 required :pending_amount, Integer |
#total_amount ⇒ Integer
The sum of available and pending balance in the currency’s smallest unit (e.g., cents for USD)
58 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 58 required :total_amount, Integer |
#updated ⇒ Time
Date and time for when the balance was last updated.
64 |
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 64 required :updated, Time |