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 ⇒ Object
constructor
A Card Dispute User Withdrawal Submitted Visa Network Event object.
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 ⇒ Object
A Card Dispute User Withdrawal Submitted Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `user_withdrawal_submitted`. Contains the details specific to a user withdrawal submitted Visa Card Dispute Network Event, which represents that the user’s request to withdraw the dispute has been submitted to the network.
|
|
# File 'lib/increase/models/card_dispute.rb', line 1503
|
Instance Attribute Details
#network_events ⇒ Array<Increase::Models::CardDispute::Visa::NetworkEvent>
The network events for the Card Dispute.
238 239 |
# File 'lib/increase/models/card_dispute.rb', line 238 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`.
247 248 249 |
# File 'lib/increase/models/card_dispute.rb', line 247 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.
255 256 |
# File 'lib/increase/models/card_dispute.rb', line 255 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 1529
|