Class: Knockapi::Models::ScheduleListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Knockapi::Models::ScheduleListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/knockapi/models/schedule_list_params.rb
Overview
Instance Attribute Summary collapse
-
#after ⇒ String?
The cursor to fetch entries after.
-
#before ⇒ String?
The cursor to fetch entries before.
-
#page_size ⇒ Integer?
The number of items per page (defaults to 50).
-
#recipients ⇒ Array<String, Knockapi::Models::RecipientReference::ObjectReference>?
Filter by recipient references.
-
#tenant ⇒ String?
Filter by tenant ID.
-
#workflow ⇒ String
Filter by workflow key.
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(workflow:, after: nil, before: nil, page_size: nil, recipients: nil, tenant: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/knockapi/models/schedule_list_params.rb', line 46
|
Instance Attribute Details
#after ⇒ String?
The cursor to fetch entries after.
20 |
# File 'lib/knockapi/models/schedule_list_params.rb', line 20 optional :after, String |
#before ⇒ String?
The cursor to fetch entries before.
26 |
# File 'lib/knockapi/models/schedule_list_params.rb', line 26 optional :before, String |
#page_size ⇒ Integer?
The number of items per page (defaults to 50).
32 |
# File 'lib/knockapi/models/schedule_list_params.rb', line 32 optional :page_size, Integer |
#recipients ⇒ Array<String, Knockapi::Models::RecipientReference::ObjectReference>?
Filter by recipient references.
38 |
# File 'lib/knockapi/models/schedule_list_params.rb', line 38 optional :recipients, -> { Knockapi::Internal::Type::ArrayOf[union: Knockapi::RecipientReference] } |
#tenant ⇒ String?
Filter by tenant ID.
44 |
# File 'lib/knockapi/models/schedule_list_params.rb', line 44 optional :tenant, String |
#workflow ⇒ String
Filter by workflow key.
14 |
# File 'lib/knockapi/models/schedule_list_params.rb', line 14 required :workflow, String |