Class: Lithic::Models::NetworkTotal
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::NetworkTotal
- Defined in:
- lib/lithic/models/network_total.rb
Direct Known Subclasses
NetworkTotalCreatedWebhookEvent, NetworkTotalUpdatedWebhookEvent
Defined Under Namespace
Modules: Network Classes: Amounts
Instance Attribute Summary collapse
- #amounts ⇒ Lithic::Models::NetworkTotal::Amounts
-
#created ⇒ Time
RFC 3339 timestamp for when the record was created.
-
#currency ⇒ String
3-character alphabetic ISO 4217 code.
-
#cycle ⇒ Integer?
The clearing cycle that the network total record applies to.
-
#institution_id ⇒ String
The institution that activity occurred on.
-
#is_complete ⇒ Boolean
Indicates that all settlement records related to this Network Total are available in the details endpoint.
-
#network ⇒ Symbol, Lithic::Models::NetworkTotal::Network
Card network where the transaction took place.
-
#report_date ⇒ Date
Date that the network total record applies to.
-
#settlement_institution_id ⇒ String
The institution responsible for settlement.
-
#settlement_service ⇒ String
Settlement service.
-
#token ⇒ String
Globally unique identifier.
-
#updated ⇒ Time
RFC 3339 timestamp for when the record was last updated.
Instance Method Summary collapse
-
#initialize(gross_settlement:, interchange_fees:, net_settlement:, visa_charges: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see Amounts 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(gross_settlement:, interchange_fees:, net_settlement:, visa_charges: nil) ⇒ Object
Some parameter documentations has been truncated, see Amounts for more details.
|
|
# File 'lib/lithic/models/network_total.rb', line 83
|
Instance Attribute Details
#amounts ⇒ Lithic::Models::NetworkTotal::Amounts
15 |
# File 'lib/lithic/models/network_total.rb', line 15 required :amounts, -> { Lithic::NetworkTotal::Amounts } |
#created ⇒ Time
RFC 3339 timestamp for when the record was created. UTC time zone.
21 |
# File 'lib/lithic/models/network_total.rb', line 21 required :created, Time |
#currency ⇒ String
3-character alphabetic ISO 4217 code.
27 |
# File 'lib/lithic/models/network_total.rb', line 27 required :currency, String |
#cycle ⇒ Integer?
The clearing cycle that the network total record applies to. Mastercard only.
81 |
# File 'lib/lithic/models/network_total.rb', line 81 optional :cycle, Integer |
#institution_id ⇒ String
The institution that activity occurred on. For Mastercard: ICA (Interbank Card Association). For Maestro: institution ID. For Visa: lowest level SRE (Settlement Reporting Entity).
35 |
# File 'lib/lithic/models/network_total.rb', line 35 required :institution_id, String |
#is_complete ⇒ Boolean
Indicates that all settlement records related to this Network Total are available in the details endpoint.
42 |
# File 'lib/lithic/models/network_total.rb', line 42 required :is_complete, Lithic::Internal::Type::Boolean |
#network ⇒ Symbol, Lithic::Models::NetworkTotal::Network
Card network where the transaction took place. AMEX, VISA, MASTERCARD, MAESTRO, or INTERLINK.
49 |
# File 'lib/lithic/models/network_total.rb', line 49 required :network, enum: -> { Lithic::NetworkTotal::Network } |
#report_date ⇒ Date
Date that the network total record applies to. YYYY-MM-DD format.
55 |
# File 'lib/lithic/models/network_total.rb', line 55 required :report_date, Date |
#settlement_institution_id ⇒ String
The institution responsible for settlement. For Mastercard: same as ‘institution_id`. For Maestro: billing ICA. For Visa: Funds Transfer SRE (FTSRE).
63 |
# File 'lib/lithic/models/network_total.rb', line 63 required :settlement_institution_id, String |
#settlement_service ⇒ String
Settlement service.
69 |
# File 'lib/lithic/models/network_total.rb', line 69 required :settlement_service, String |
#token ⇒ String
Globally unique identifier.
10 |
# File 'lib/lithic/models/network_total.rb', line 10 required :token, String |
#updated ⇒ Time
RFC 3339 timestamp for when the record was last updated. UTC time zone.
75 |
# File 'lib/lithic/models/network_total.rb', line 75 required :updated, Time |