Class: Lithic::Models::SettlementDetail
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::SettlementDetail
- Defined in:
- lib/lithic/models/settlement_detail.rb
Defined Under Namespace
Modules: Network, Type Classes: OtherFeesDetails
Instance Attribute Summary collapse
-
#account_token ⇒ String
Globally unique identifier denoting the account that the associated transaction occurred on.
-
#card_program_token ⇒ String
Globally unique identifier denoting the card program that the associated transaction occurred on.
-
#card_token ⇒ String
Globally unique identifier denoting the card that the associated transaction occurred on.
-
#created ⇒ Time
Date and time when the transaction first occurred.
-
#currency ⇒ String
Three-character alphabetic ISO 4217 code.
-
#disputes_gross_amount ⇒ Integer
The total gross amount of disputes settlements.
-
#event_tokens ⇒ Array<String>
Globally unique identifiers denoting the Events associated with this settlement.
-
#fee_description ⇒ String?
Network’s description of a fee, only present on records with type ‘FEE`.
-
#institution ⇒ String
The most granular ID the network settles with (e.g., ICA for Mastercard, FTSRE for Visa).
-
#interchange_fee_extended_precision ⇒ Integer
The total amount of interchange in six-digit extended precision.
-
#interchange_gross_amount ⇒ Integer
The total amount of interchange.
-
#network ⇒ Symbol, Lithic::Models::SettlementDetail::Network
Card network where the transaction took place.
-
#other_fees_details ⇒ Lithic::Models::SettlementDetail::OtherFeesDetails
The total gross amount of other fees by type.
-
#other_fees_gross_amount ⇒ Integer
Total amount of gross other fees outside of interchange.
-
#report_date ⇒ String
Date of when the report was first generated.
-
#settlement_date ⇒ String
Date of when money movement is triggered for the transaction.
-
#token ⇒ String
Globally unique identifier denoting the Settlement Detail.
-
#transaction_token ⇒ String
Globally unique identifier denoting the associated Transaction object.
-
#transactions_gross_amount ⇒ Integer
The total amount of settlement impacting transactions (excluding interchange, fees, and disputes).
-
#type ⇒ Symbol, Lithic::Models::SettlementDetail::Type
The type of settlement record.
-
#updated ⇒ Time
Date and time when the transaction first occurred.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(isa: nil) ⇒ Object
constructor
The total gross amount of other fees by type.
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(isa: nil) ⇒ Object
The total gross amount of other fees by type.
|
|
# File 'lib/lithic/models/settlement_detail.rb', line 139
|
Instance Attribute Details
#account_token ⇒ String
Globally unique identifier denoting the account that the associated transaction occurred on.
17 |
# File 'lib/lithic/models/settlement_detail.rb', line 17 required :account_token, String |
#card_program_token ⇒ String
Globally unique identifier denoting the card program that the associated transaction occurred on.
24 |
# File 'lib/lithic/models/settlement_detail.rb', line 24 required :card_program_token, String |
#card_token ⇒ String
Globally unique identifier denoting the card that the associated transaction occurred on.
31 |
# File 'lib/lithic/models/settlement_detail.rb', line 31 required :card_token, String |
#created ⇒ Time
Date and time when the transaction first occurred. UTC time zone.
37 |
# File 'lib/lithic/models/settlement_detail.rb', line 37 required :created, Time |
#currency ⇒ String
Three-character alphabetic ISO 4217 code.
43 |
# File 'lib/lithic/models/settlement_detail.rb', line 43 required :currency, String |
#disputes_gross_amount ⇒ Integer
The total gross amount of disputes settlements.
49 |
# File 'lib/lithic/models/settlement_detail.rb', line 49 required :disputes_gross_amount, Integer |
#event_tokens ⇒ Array<String>
Globally unique identifiers denoting the Events associated with this settlement.
55 |
# File 'lib/lithic/models/settlement_detail.rb', line 55 required :event_tokens, Lithic::Internal::Type::ArrayOf[String] |
#fee_description ⇒ String?
Network’s description of a fee, only present on records with type ‘FEE`.
137 |
# File 'lib/lithic/models/settlement_detail.rb', line 137 optional :fee_description, String |
#institution ⇒ String
The most granular ID the network settles with (e.g., ICA for Mastercard, FTSRE for Visa).
62 |
# File 'lib/lithic/models/settlement_detail.rb', line 62 required :institution, String |
#interchange_fee_extended_precision ⇒ Integer
The total amount of interchange in six-digit extended precision.
68 |
# File 'lib/lithic/models/settlement_detail.rb', line 68 required :interchange_fee_extended_precision, Integer |
#interchange_gross_amount ⇒ Integer
The total amount of interchange.
74 |
# File 'lib/lithic/models/settlement_detail.rb', line 74 required :interchange_gross_amount, Integer |
#network ⇒ Symbol, Lithic::Models::SettlementDetail::Network
Card network where the transaction took place.
80 |
# File 'lib/lithic/models/settlement_detail.rb', line 80 required :network, enum: -> { Lithic::SettlementDetail::Network } |
#other_fees_details ⇒ Lithic::Models::SettlementDetail::OtherFeesDetails
The total gross amount of other fees by type.
86 |
# File 'lib/lithic/models/settlement_detail.rb', line 86 required :other_fees_details, -> { Lithic::SettlementDetail::OtherFeesDetails } |
#other_fees_gross_amount ⇒ Integer
Total amount of gross other fees outside of interchange.
92 |
# File 'lib/lithic/models/settlement_detail.rb', line 92 required :other_fees_gross_amount, Integer |
#report_date ⇒ String
Date of when the report was first generated.
98 |
# File 'lib/lithic/models/settlement_detail.rb', line 98 required :report_date, String |
#settlement_date ⇒ String
Date of when money movement is triggered for the transaction. One exception applies - for Mastercard dual message settlement, this is the settlement advisement date, which is distinct from the date of money movement.
106 |
# File 'lib/lithic/models/settlement_detail.rb', line 106 required :settlement_date, String |
#token ⇒ String
Globally unique identifier denoting the Settlement Detail.
10 |
# File 'lib/lithic/models/settlement_detail.rb', line 10 required :token, String |
#transaction_token ⇒ String
Globally unique identifier denoting the associated Transaction object.
112 |
# File 'lib/lithic/models/settlement_detail.rb', line 112 required :transaction_token, String |
#transactions_gross_amount ⇒ Integer
The total amount of settlement impacting transactions (excluding interchange, fees, and disputes).
119 |
# File 'lib/lithic/models/settlement_detail.rb', line 119 required :transactions_gross_amount, Integer |
#type ⇒ Symbol, Lithic::Models::SettlementDetail::Type
The type of settlement record.
125 |
# File 'lib/lithic/models/settlement_detail.rb', line 125 required :type, enum: -> { Lithic::SettlementDetail::Type } |
#updated ⇒ Time
Date and time when the transaction first occurred. UTC time zone.
131 |
# File 'lib/lithic/models/settlement_detail.rb', line 131 required :updated, Time |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/lithic/models/settlement_detail.rb', line 197
|