Class: Knockapi::Models::Users::FeedListItemsParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Knockapi::Models::Users::FeedListItemsParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/knockapi/models/users/feed_list_items_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
-
#after ⇒ String?
The cursor to fetch entries after.
-
#archived ⇒ Symbol, ...
The archived status of the feed items.
-
#before ⇒ String?
The cursor to fetch entries before.
-
#has_tenant ⇒ Boolean?
Whether the feed items have a tenant.
-
#locale ⇒ String?
The locale to render the feed items in.
-
#page_size ⇒ Integer?
The number of items per page (defaults to 50).
-
#source ⇒ String?
The workflow key associated with the message in the feed.
-
#status ⇒ Symbol, ...
The status of the feed items.
-
#tenant ⇒ String?
The tenant associated with the feed items.
-
#trigger_data ⇒ String?
The trigger data of the feed items (as a JSON string).
-
#workflow_categories ⇒ Array<String>?
The workflow categories of the feed items.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(after: nil, archived: nil, before: nil, has_tenant: nil, locale: nil, page_size: nil, source: nil, status: nil, tenant: nil, trigger_data: nil, workflow_categories: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see FeedListItemsParams for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(after: nil, archived: nil, before: nil, has_tenant: nil, locale: nil, page_size: nil, source: nil, status: nil, tenant: nil, trigger_data: nil, workflow_categories: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Knockapi::Models::Users::FeedListItemsParams for more details.
|
|
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 80
|
Instance Attribute Details
#after ⇒ String?
The cursor to fetch entries after.
15 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 15 optional :after, String |
#archived ⇒ Symbol, ...
The archived status of the feed items.
21 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 21 optional :archived, enum: -> { Knockapi::Users::FeedListItemsParams::Archived } |
#before ⇒ String?
The cursor to fetch entries before.
27 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 27 optional :before, String |
#has_tenant ⇒ Boolean?
Whether the feed items have a tenant.
33 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 33 optional :has_tenant, Knockapi::Internal::Type::Boolean |
#locale ⇒ String?
The locale to render the feed items in. Must be in the IETF 5646 format (e.g. ‘en-US`). When not provided, will default to the locale that the feed items were rendered in. Only available for enterprise plan customers using custom translations.
42 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 42 optional :locale, String |
#page_size ⇒ Integer?
The number of items per page (defaults to 50).
48 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 48 optional :page_size, Integer |
#source ⇒ String?
The workflow key associated with the message in the feed.
54 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 54 optional :source, String |
#status ⇒ Symbol, ...
The status of the feed items.
60 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 60 optional :status, enum: -> { Knockapi::Users::FeedListItemsParams::Status } |
#tenant ⇒ String?
The tenant associated with the feed items.
66 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 66 optional :tenant, String |
#trigger_data ⇒ String?
The trigger data of the feed items (as a JSON string).
72 |
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 72 optional :trigger_data, String |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/knockapi/models/users/feed_list_items_params.rb', line 116
|