#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct CategorizeResponse {
#[serde(rename = "choices", skip_serializing_if = "Option::is_none")]
pub choices: Option<Vec<String>>,
}
impl CategorizeResponse {
pub fn new() -> CategorizeResponse {
CategorizeResponse {
choices: None,
}
}
}