Class: Dataleon::Models::IndividualListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Dataleon::Models::IndividualListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/dataleon/models/individual_list_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
-
#end_date ⇒ Date?
Filter individuals created before this date (format YYYY-MM-DD).
-
#limit ⇒ Integer?
Number of results to return (between 1 and 100).
-
#offset ⇒ Integer?
Number of results to offset (must be ≥ 0).
-
#source_id ⇒ String?
Filter by source ID.
-
#start_date ⇒ Date?
Filter individuals created after this date (format YYYY-MM-DD).
-
#state ⇒ Symbol, ...
Filter by individual status (must be one of the allowed values).
-
#status ⇒ Symbol, ...
Filter by individual status (must be one of the allowed values).
-
#workspace_id ⇒ String?
Filter by workspace ID.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
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(end_date: nil, limit: nil, offset: nil, source_id: nil, start_date: nil, state: nil, status: nil, workspace_id: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/dataleon/models/individual_list_params.rb', line 58
|
Instance Attribute Details
#end_date ⇒ Date?
Filter individuals created before this date (format YYYY-MM-DD)
14 |
# File 'lib/dataleon/models/individual_list_params.rb', line 14 optional :end_date, Date |
#limit ⇒ Integer?
Number of results to return (between 1 and 100)
20 |
# File 'lib/dataleon/models/individual_list_params.rb', line 20 optional :limit, Integer |
#offset ⇒ Integer?
Number of results to offset (must be ≥ 0)
26 |
# File 'lib/dataleon/models/individual_list_params.rb', line 26 optional :offset, Integer |
#source_id ⇒ String?
Filter by source ID
32 |
# File 'lib/dataleon/models/individual_list_params.rb', line 32 optional :source_id, String |
#start_date ⇒ Date?
Filter individuals created after this date (format YYYY-MM-DD)
38 |
# File 'lib/dataleon/models/individual_list_params.rb', line 38 optional :start_date, Date |
#state ⇒ Symbol, ...
Filter by individual status (must be one of the allowed values)
44 |
# File 'lib/dataleon/models/individual_list_params.rb', line 44 optional :state, enum: -> { Dataleon::IndividualListParams::State } |
#status ⇒ Symbol, ...
Filter by individual status (must be one of the allowed values)
50 |
# File 'lib/dataleon/models/individual_list_params.rb', line 50 optional :status, enum: -> { Dataleon::IndividualListParams::Status } |
#workspace_id ⇒ String?
Filter by workspace ID
56 |
# File 'lib/dataleon/models/individual_list_params.rb', line 56 optional :workspace_id, String |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/dataleon/models/individual_list_params.rb', line 91
|