Module: Knockapi::Models::Channels::BulkUpdateMessageStatusParams::Action
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/knockapi/models/channels/bulk_update_message_status_params.rb,
sig/knockapi/models/channels/bulk_update_message_status_params.rbs
Constant Summary collapse
- SEEN =
:seen- UNSEEN =
:unseen- READ =
:read- UNREAD =
:unread- ARCHIVED =
:archived- UNARCHIVED =
:unarchived- INTERACTED =
:interacted- ARCHIVE =
:archive- UNARCHIVE =
:unarchive- DELETE =
:delete
Instance Method Summary collapse
-
#initialize(channel_id:, action:, archived: nil, delivery_status: nil, engagement_status: nil, has_tenant: nil, newer_than: nil, older_than: nil, recipient_ids: nil, tenants: nil, trigger_data: nil, workflows: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Knockapi::Models::Channels::BulkUpdateMessageStatusParams for more details.
- #self?.values ⇒ ::Array[Knockapi::Models::Channels::BulkUpdateMessageStatusParams::action]
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values, 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(channel_id:, action:, archived: nil, delivery_status: nil, engagement_status: nil, has_tenant: nil, newer_than: nil, older_than: nil, recipient_ids: nil, tenants: nil, trigger_data: nil, workflows: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Knockapi::Models::Channels::BulkUpdateMessageStatusParams for more details.
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/knockapi/models/channels/bulk_update_message_status_params.rb', line 114 module Action extend Knockapi::Internal::Type::Enum SEEN = :seen UNSEEN = :unseen READ = :read UNREAD = :unread ARCHIVED = :archived UNARCHIVED = :unarchived INTERACTED = :interacted ARCHIVE = :archive UNARCHIVE = :unarchive DELETE = :delete # @!method self.values # @return [Array<Symbol>] end |
#self?.values ⇒ ::Array[Knockapi::Models::Channels::BulkUpdateMessageStatusParams::action]
133 |
# File 'sig/knockapi/models/channels/bulk_update_message_status_params.rbs', line 133
def self?.values: -> ::Array[Knockapi::Models::Channels::BulkUpdateMessageStatusParams::action]
|