Class: Increase::Models::CardDispute::Visa

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/increase/models/card_dispute.rb

Overview

See Also:

Defined Under Namespace

Modules: RequiredUserSubmissionCategory Classes: NetworkEvent, UserSubmission

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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

#initializeObject

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_eventsArray<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_categorySymbol, ...

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_submissionsArray<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

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/increase/models/card_dispute.rb', line 1529