Module: Orb::Models::SubscriptionListParams::Status
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/orb/models/subscription_list_params.rb
Constant Summary collapse
- ACTIVE =
:active- ENDED =
:ended- UPCOMING =
:upcoming
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(created_at_gt: nil, created_at_gte: nil, created_at_lt: nil, created_at_lte: nil, cursor: nil, customer_id: nil, external_customer_id: nil, limit: nil, status: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Orb::Models::SubscriptionListParams 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/orb/models/subscription_list_params.rb', line 89
|
Instance Method Details
#initialize(created_at_gt: nil, created_at_gte: nil, created_at_lt: nil, created_at_lte: nil, cursor: nil, customer_id: nil, external_customer_id: nil, limit: nil, status: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Orb::Models::SubscriptionListParams for more details.
82 83 84 85 86 87 88 89 90 91 |
# File 'lib/orb/models/subscription_list_params.rb', line 82 module Status extend Orb::Internal::Type::Enum ACTIVE = :active ENDED = :ended UPCOMING = :upcoming # @!method self.values # @return [Array<Symbol>] end |