Class: Notiflows::Models::NotificationListDeliveriesParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Notiflows::Models::NotificationListDeliveriesParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/notiflows/models/notification_list_deliveries_params.rb
Overview
Instance Attribute Summary collapse
-
#after ⇒ String?
Cursor for fetching the next page.
-
#before ⇒ String?
Cursor for fetching the previous page.
-
#channel_id ⇒ String?
Filter by channel ID (UUID).
-
#created_after ⇒ String?
Filter by created after (ISO 8601 datetime).
-
#created_before ⇒ String?
Filter by created before (ISO 8601 datetime).
-
#limit ⇒ Integer?
Number of items per page (default: 25, max: 1000).
-
#status ⇒ String?
Filter by status (pending, sent, failed).
-
#topic ⇒ String?
Filter by topic name.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
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, before: nil, channel_id: nil, created_after: nil, created_before: nil, limit: nil, status: nil, topic: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 58
|
Instance Attribute Details
#after ⇒ String?
Cursor for fetching the next page
14 |
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 14 optional :after, String |
#before ⇒ String?
Cursor for fetching the previous page
20 |
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 20 optional :before, String |
#channel_id ⇒ String?
Filter by channel ID (UUID)
26 |
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 26 optional :channel_id, String |
#created_after ⇒ String?
Filter by created after (ISO 8601 datetime)
32 |
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 32 optional :created_after, String |
#created_before ⇒ String?
Filter by created before (ISO 8601 datetime)
38 |
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 38 optional :created_before, String |
#limit ⇒ Integer?
Number of items per page (default: 25, max: 1000)
44 |
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 44 optional :limit, Integer |
#status ⇒ String?
Filter by status (pending, sent, failed)
50 |
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 50 optional :status, String |
#topic ⇒ String?
Filter by topic name
56 |
# File 'lib/notiflows/models/notification_list_deliveries_params.rb', line 56 optional :topic, String |