Class: Lithic::Models::Cards::AggregateBalanceListResponse

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/lithic/models/cards/aggregate_balance_list_response.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

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

Parameters:

  • 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 recent

  • last_transaction_event_token (String)

    Globally unique identifier for the last transaction event that impacted this bal

  • 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.,

  • updated (Time)

    Date and time for when the balance was last updated.



# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 66

Instance Attribute Details

#available_amountInteger

Funds available for spend in the currency’s smallest unit (e.g., cents for USD)

Returns:

  • (Integer)


12
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 12

required :available_amount, Integer

#createdTime

Date and time for when the balance was first created.

Returns:

  • (Time)


18
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 18

required :created, Time

#currencyString

3-character alphabetic ISO 4217 code for the local currency of the balance.

Returns:

  • (String)


24
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 24

required :currency, String

#last_card_tokenString

Globally unique identifier for the card that had its balance updated most recently

Returns:

  • (String)


31
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 31

required :last_card_token, String

#last_transaction_event_tokenString

Globally unique identifier for the last transaction event that impacted this balance

Returns:

  • (String)


38
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 38

required :last_transaction_event_token, String

#last_transaction_tokenString

Globally unique identifier for the last transaction that impacted this balance

Returns:

  • (String)


44
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 44

required :last_transaction_token, String

#pending_amountInteger

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)

Returns:

  • (Integer)


51
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 51

required :pending_amount, Integer

#total_amountInteger

The sum of available and pending balance in the currency’s smallest unit (e.g., cents for USD)

Returns:

  • (Integer)


58
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 58

required :total_amount, Integer

#updatedTime

Date and time for when the balance was last updated.

Returns:

  • (Time)


64
# File 'lib/lithic/models/cards/aggregate_balance_list_response.rb', line 64

required :updated, Time