Class: Lithic::Models::SettlementSummaryDetails
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::SettlementSummaryDetails
- Defined in:
- lib/lithic/models/settlement_summary_details.rb
Defined Under Namespace
Modules: Network
Instance Attribute Summary collapse
-
#currency ⇒ String?
3-character alphabetic ISO 4217 code.
-
#disputes_gross_amount ⇒ Integer?
The total gross amount of disputes settlements.
-
#institution ⇒ String?
The most granular ID the network settles with (e.g., ICA for Mastercard, FTSRE for Visa).
-
#interchange_gross_amount ⇒ Integer?
The total amount of interchange.
-
#network ⇒ Symbol, ...
Card network where the transaction took place.
-
#other_fees_gross_amount ⇒ Integer?
Total amount of gross other fees outside of interchange.
-
#settled_net_amount ⇒ Integer?
The total net amount of cash moved.
-
#transactions_gross_amount ⇒ Integer?
The total amount of settlement impacting transactions (excluding interchange, fees, and disputes).
Instance Method Summary collapse
-
#initialize(currency: nil, disputes_gross_amount: nil, institution: nil, interchange_gross_amount: nil, network: nil, other_fees_gross_amount: nil, settled_net_amount: nil, transactions_gross_amount: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see SettlementSummaryDetails 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(currency: nil, disputes_gross_amount: nil, institution: nil, interchange_gross_amount: nil, network: nil, other_fees_gross_amount: nil, settled_net_amount: nil, transactions_gross_amount: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::SettlementSummaryDetails for more details.
|
|
# File 'lib/lithic/models/settlement_summary_details.rb', line 57
|
Instance Attribute Details
#currency ⇒ String?
3-character alphabetic ISO 4217 code.
10 |
# File 'lib/lithic/models/settlement_summary_details.rb', line 10 optional :currency, String |
#disputes_gross_amount ⇒ Integer?
The total gross amount of disputes settlements.
16 |
# File 'lib/lithic/models/settlement_summary_details.rb', line 16 optional :disputes_gross_amount, Integer |
#institution ⇒ String?
The most granular ID the network settles with (e.g., ICA for Mastercard, FTSRE for Visa).
23 |
# File 'lib/lithic/models/settlement_summary_details.rb', line 23 optional :institution, String |
#interchange_gross_amount ⇒ Integer?
The total amount of interchange.
29 |
# File 'lib/lithic/models/settlement_summary_details.rb', line 29 optional :interchange_gross_amount, Integer |
#network ⇒ Symbol, ...
Card network where the transaction took place
35 |
# File 'lib/lithic/models/settlement_summary_details.rb', line 35 optional :network, enum: -> { Lithic::SettlementSummaryDetails::Network } |
#other_fees_gross_amount ⇒ Integer?
Total amount of gross other fees outside of interchange.
41 |
# File 'lib/lithic/models/settlement_summary_details.rb', line 41 optional :other_fees_gross_amount, Integer |
#settled_net_amount ⇒ Integer?
The total net amount of cash moved. (net value of settled_gross_amount, interchange, fees).
48 |
# File 'lib/lithic/models/settlement_summary_details.rb', line 48 optional :settled_net_amount, Integer |
#transactions_gross_amount ⇒ Integer?
The total amount of settlement impacting transactions (excluding interchange, fees, and disputes).
55 |
# File 'lib/lithic/models/settlement_summary_details.rb', line 55 optional :transactions_gross_amount, Integer |