Module: Lithic::Models::Events::SubscriptionListAttemptsParams::Status
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/lithic/models/events/subscription_list_attempts_params.rb
Constant Summary collapse
- FAILED =
:FAILED- PENDING =
:PENDING- SENDING =
:SENDING- SUCCESS =
:SUCCESS
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(begin_: nil, end_: nil, ending_before: nil, page_size: nil, starting_after: nil, status: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::Events::SubscriptionListAttemptsParams 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/lithic/models/events/subscription_list_attempts_params.rb', line 76
|
Instance Method Details
#initialize(begin_: nil, end_: nil, ending_before: nil, page_size: nil, starting_after: nil, status: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::Events::SubscriptionListAttemptsParams for more details.
68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/lithic/models/events/subscription_list_attempts_params.rb', line 68 module Status extend Lithic::Internal::Type::Enum FAILED = :FAILED PENDING = :PENDING SENDING = :SENDING SUCCESS = :SUCCESS # @!method self.values # @return [Array<Symbol>] end |