openai_struct/models/vector_store_file_content_response.rs
1/*
2 * OpenAI API
3 *
4 * The OpenAI REST API. Please see pub https://platform.openai.com/docs/api-reference for more details.
5 *
6 * OpenAPI spec pub version: 2.3.0
7 *
8 * Generated pub by: https://github.com/swagger-api/swagger-codegen.git
9 */
10
11/// pub VectorStoreFileContentResponse : Represents the parsed content of a vector store file.
12
13#[allow(unused_imports)]
14use serde_json::Value;
15
16#[derive(Debug, Serialize, Deserialize)]
17pub struct VectorStoreFileContentResponse {
18 /// Parsed content of the file.
19 #[serde(rename = "data")]
20 pub data: Vec<crate::models::VectorStoreFileContentResponseData>,
21 /// Indicates if there are more content pages to fetch.
22 #[serde(rename = "has_more")]
23 pub has_more: bool,
24 /// The token for the next page, if any.
25 #[serde(rename = "next_page")]
26 pub next_page: String,
27 /// The object type, which is always `vector_store.file_content.page`
28 #[serde(rename = "object")]
29 pub object: String,
30}