Class: OpenAI::Models::VectorStores::FileBatchListFilesParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::VectorStores::FileBatchListFilesParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/openai/models/vector_stores/file_batch_list_files_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
-
#after ⇒ String?
A cursor for use in pagination.
-
#before ⇒ String?
A cursor for use in pagination.
-
#filter ⇒ Symbol, ...
Filter by file status.
-
#limit ⇒ Integer?
A limit on the number of objects to be returned.
-
#order ⇒ Symbol, ...
Sort order by the ‘created_at` timestamp of the objects.
- #vector_store_id ⇒ String
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(vector_store_id: , after: nil, before: nil, filter: nil, limit: nil, order: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see FileBatchListFilesParams 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, 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(vector_store_id: , after: nil, before: nil, filter: nil, limit: nil, order: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see OpenAI::Models::VectorStores::FileBatchListFilesParams for more details.
|
# File 'lib/openai/models/vector_stores/file_batch_list_files_params.rb', line 54
|
Instance Attribute Details
#after ⇒ String?
A cursor for use in pagination. ‘after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
23 |
# File 'lib/openai/models/vector_stores/file_batch_list_files_params.rb', line 23 optional :after, String |
#before ⇒ String?
A cursor for use in pagination. ‘before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
32 |
# File 'lib/openai/models/vector_stores/file_batch_list_files_params.rb', line 32 optional :before, String |
#filter ⇒ Symbol, ...
Filter by file status. One of ‘in_progress`, `completed`, `failed`, `cancelled`.
38 |
# File 'lib/openai/models/vector_stores/file_batch_list_files_params.rb', line 38 optional :filter, enum: -> { OpenAI::VectorStores::FileBatchListFilesParams::Filter } |
#limit ⇒ Integer?
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
45 |
# File 'lib/openai/models/vector_stores/file_batch_list_files_params.rb', line 45 optional :limit, Integer |
#order ⇒ Symbol, ...
Sort order by the ‘created_at` timestamp of the objects. `asc` for ascending order and `desc` for descending order.
52 |
# File 'lib/openai/models/vector_stores/file_batch_list_files_params.rb', line 52 optional :order, enum: -> { OpenAI::VectorStores::FileBatchListFilesParams::Order } |
#vector_store_id ⇒ String
14 |
# File 'lib/openai/models/vector_stores/file_batch_list_files_params.rb', line 14 required :vector_store_id, String |
Class Method Details
.values ⇒ Array<Symbol>
|
# File 'lib/openai/models/vector_stores/file_batch_list_files_params.rb', line 81
|