Class: XTwitterScraper::Models::ExtractionListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- XTwitterScraper::Models::ExtractionListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/x_twitter_scraper/models/extraction_list_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
-
#after ⇒ String?
Cursor for keyset pagination.
-
#limit ⇒ Integer?
Maximum number of items to return (1-100, default 50).
-
#status ⇒ Symbol, ...
Filter by job status.
-
#tool_type ⇒ Symbol, ...
Filter by extraction tool type.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(after: nil, limit: nil, status: nil, tool_type: nil, request_options: {}) ⇒ Object constructor
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, limit: nil, status: nil, tool_type: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/x_twitter_scraper/models/extraction_list_params.rb', line 34
|
Instance Attribute Details
#after ⇒ String?
Cursor for keyset pagination
14 |
# File 'lib/x_twitter_scraper/models/extraction_list_params.rb', line 14 optional :after, String |
#limit ⇒ Integer?
Maximum number of items to return (1-100, default 50)
20 |
# File 'lib/x_twitter_scraper/models/extraction_list_params.rb', line 20 optional :limit, Integer |
#status ⇒ Symbol, ...
Filter by job status
26 |
# File 'lib/x_twitter_scraper/models/extraction_list_params.rb', line 26 optional :status, enum: -> { XTwitterScraper::ExtractionListParams::Status } |
#tool_type ⇒ Symbol, ...
Filter by extraction tool type
32 |
# File 'lib/x_twitter_scraper/models/extraction_list_params.rb', line 32 optional :tool_type, enum: -> { XTwitterScraper::ExtractionListParams::ToolType } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/x_twitter_scraper/models/extraction_list_params.rb', line 53
|