Module: Increase::Models::CardDisputeListParams::Status::In
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/increase/models/card_dispute_list_params.rb
Constant Summary collapse
- PENDING_REVIEWING =
The Card Dispute is pending review.
:pending_reviewing- PENDING_USER_INFORMATION =
Increase has requested more information related to the Card Dispute from you.
:pending_user_information- ACCEPTED =
The Card Dispute has been accepted and your funds have been returned. The card dispute will eventually transition into ‘won` or `lost` depending on the outcome.
:accepted- REJECTED =
The Card Dispute has been rejected.
:rejected- LOST =
The Card Dispute has been lost and funds previously credited from the acceptance have been debited.
:lost- WON =
The Card Dispute has been won and no further action can be taken.
:won
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::CardDisputeListParams::Status for more details.
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/card_dispute_list_params.rb', line 138
|
Instance Method Details
#initialize(in_: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::CardDisputeListParams::Status for more details.
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/increase/models/card_dispute_list_params.rb', line 117 module In extend Increase::Internal::Type::Enum # The Card Dispute is pending review. PENDING_REVIEWING = :pending_reviewing # Increase has requested more information related to the Card Dispute from you. PENDING_USER_INFORMATION = :pending_user_information # The Card Dispute has been accepted and your funds have been returned. The card dispute will eventually transition into `won` or `lost` depending on the outcome. ACCEPTED = :accepted # The Card Dispute has been rejected. REJECTED = :rejected # The Card Dispute has been lost and funds previously credited from the acceptance have been debited. LOST = :lost # The Card Dispute has been won and no further action can be taken. WON = :won # @!method self.values # @return [Array<Symbol>] end |