Class: Lithic::Models::DisputeV2::TransactionSeries
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::DisputeV2::TransactionSeries
- Defined in:
- lib/lithic/models/dispute_v2.rb
Overview
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#related_transaction_event_token ⇒ String?
Token of the specific event in the original transaction being disputed, in UUID format; null if no event can be identified.
-
#related_transaction_token ⇒ String
Token of the original transaction being disputed, in UUID format.
-
#type ⇒ Symbol, Lithic::Models::DisputeV2::TransactionSeries::Type
The type of transaction series associating the dispute and the original transaction.
Instance Method Summary collapse
-
#initialize(related_transaction_event_token:, related_transaction_token:, type:) ⇒ Object
constructor
Some parameter documentations has been truncated, see TransactionSeries 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(related_transaction_event_token:, related_transaction_token:, type:) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::DisputeV2::TransactionSeries for more details.
Contains identifiers for the transaction and specific event within being disputed; null if no transaction can be identified
|
|
# File 'lib/lithic/models/dispute_v2.rb', line 527
|
Instance Attribute Details
#related_transaction_event_token ⇒ String?
Token of the specific event in the original transaction being disputed, in UUID format; null if no event can be identified
512 |
# File 'lib/lithic/models/dispute_v2.rb', line 512 required :related_transaction_event_token, String, nil?: true |
#related_transaction_token ⇒ String
Token of the original transaction being disputed, in UUID format
518 |
# File 'lib/lithic/models/dispute_v2.rb', line 518 required :related_transaction_token, String |
#type ⇒ Symbol, Lithic::Models::DisputeV2::TransactionSeries::Type
The type of transaction series associating the dispute and the original transaction. Always set to DISPUTE
525 |
# File 'lib/lithic/models/dispute_v2.rb', line 525 required :type, enum: -> { Lithic::DisputeV2::TransactionSeries::Type } |