Class: Increase::Models::CardDispute::Visa
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CardDispute::Visa
- Defined in:
- lib/increase/models/card_dispute.rb
Overview
Defined Under Namespace
Modules: RequiredUserSubmissionCategory Classes: NetworkEvent, UserSubmission
Instance Attribute Summary collapse
-
#network_events ⇒ Array<Increase::Models::CardDispute::Visa::NetworkEvent>
The network events for the Card Dispute.
-
#required_user_submission_category ⇒ Symbol, ...
The category of the currently required user submission if the user wishes to proceed with the dispute.
-
#user_submissions ⇒ Array<Increase::Models::CardDispute::Visa::UserSubmission>
The user submissions for the Card Dispute.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(explanation: ) ⇒ Object
constructor
Reversal issued by merchant 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(explanation: ) ⇒ Object
Reversal issued by merchant details. Present if and only if ‘reason` is `reversal_issued`.
|
|
# File 'lib/increase/models/card_dispute.rb', line 1366
|
Instance Attribute Details
#network_events ⇒ Array<Increase::Models::CardDispute::Visa::NetworkEvent>
The network events for the Card Dispute.
235 236 |
# File 'lib/increase/models/card_dispute.rb', line 235 required :network_events, -> { Increase::Internal::Type::ArrayOf[Increase::CardDispute::Visa::NetworkEvent] } |
#required_user_submission_category ⇒ Symbol, ...
The category of the currently required user submission if the user wishes to proceed with the dispute. Present if and only if status is ‘user_submission_required`. Otherwise, this will be `nil`.
244 245 246 |
# File 'lib/increase/models/card_dispute.rb', line 244 required :required_user_submission_category, enum: -> { Increase::CardDispute::Visa::RequiredUserSubmissionCategory }, nil?: true |
#user_submissions ⇒ Array<Increase::Models::CardDispute::Visa::UserSubmission>
The user submissions for the Card Dispute.
252 253 |
# File 'lib/increase/models/card_dispute.rb', line 252 required :user_submissions, -> { Increase::Internal::Type::ArrayOf[Increase::CardDispute::Visa::UserSubmission] } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/card_dispute.rb', line 1392
|