Module: Knockapi::Models::Channels::BulkUpdateMessageStatusParams::Action
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/knockapi/models/channels/bulk_update_message_status_params.rb
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(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.
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(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.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/knockapi/models/channels/bulk_update_message_status_params.rb', line 100 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 |