openai/models/
create_classification_response_selected_examples_inner.rs

1/*
2 * OpenAI API
3 *
4 * APIs for sampling from and fine-tuning language models
5 *
6 * The version of the OpenAPI document: 1.2.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct CreateClassificationResponseSelectedExamplesInner {
16    #[serde(rename = "document", skip_serializing_if = "Option::is_none")]
17    pub document: Option<i32>,
18    #[serde(rename = "text", skip_serializing_if = "Option::is_none")]
19    pub text: Option<String>,
20    #[serde(rename = "label", skip_serializing_if = "Option::is_none")]
21    pub label: Option<String>,
22}
23
24impl CreateClassificationResponseSelectedExamplesInner {
25    pub fn new() -> CreateClassificationResponseSelectedExamplesInner {
26        CreateClassificationResponseSelectedExamplesInner {
27            document: None,
28            text: None,
29            label: None,
30        }
31    }
32}
33
34