openai/models/
create_moderation_request_input.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/// CreateModerationRequestInput : The input text to classify
12
13
14
15#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
16pub struct CreateModerationRequestInput {
17}
18
19impl CreateModerationRequestInput {
20    /// The input text to classify
21    pub fn new() -> CreateModerationRequestInput {
22        CreateModerationRequestInput {
23        }
24    }
25}
26
27