openai_struct/models/
batch_request_output_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#[allow(unused_imports)]
12use serde_json::Value;
13
14#[derive(Debug, Serialize, Deserialize)]
15pub struct BatchRequestOutputResponse {
16    /// The JSON body of the response
17    #[serde(rename = "body")]
18    pub body: Option<Value>,
19    /// An unique identifier for the OpenAI API request. Please include this request ID when contacting support.
20    #[serde(rename = "request_id")]
21    pub request_id: Option<String>,
22    /// The HTTP status code of the response
23    #[serde(rename = "status_code")]
24    pub status_code: Option<i32>,
25}