Module: MethodRuby::Models::WebhookUpdateParams::Status
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/method_ruby/models/webhook_update_params.rb
Constant Summary collapse
- ACTIVE =
:active- REQUIRES_ATTENTION =
:requires_attention- DISABLED =
:disabled- DELETED =
:deleted
Instance Method Summary collapse
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
Instance Method Details
#initialize(webhook_id:, status:, method_version:, idempotency_key: nil, request_options: {}) ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/method_ruby/models/webhook_update_params.rb', line 37 module Status extend MethodRuby::Internal::Type::Enum ACTIVE = :active REQUIRES_ATTENTION = :requires_attention DISABLED = :disabled DELETED = :deleted # @!method self.values # @return [Array<Symbol>] end |