openai_struct/models/fine_tuning_job_event.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 FineTuningJobEvent : Fine-tuning job event object
12
13#[allow(unused_imports)]
14use serde_json::Value;
15
16#[derive(Debug, Serialize, Deserialize)]
17pub struct FineTuningJobEvent {
18 /// The Unix timestamp (in seconds) for when the fine-tuning job was created.
19 #[serde(rename = "created_at")]
20 pub created_at: i32,
21 /// The data associated with the event.
22 #[serde(rename = "data")]
23 pub data: Option<Value>,
24 /// The object identifier.
25 #[serde(rename = "id")]
26 pub id: String,
27 /// The log level of the event.
28 #[serde(rename = "level")]
29 pub level: String,
30 /// The message of the event.
31 #[serde(rename = "message")]
32 pub message: String,
33 /// The object type, which is always \"fine_tuning.job.event\".
34 #[serde(rename = "object")]
35 pub object: String,
36 /// The type of event.
37 #[serde(rename = "type")]
38 pub _type: Option<String>,
39}