/*
* DTZ Core Api
*
* a generated client for the DTZ Core API
*
* Contact: jens@apimeister.com
* Generated by: https://openapi-generator.tech
*/
#[allow(unused_imports)]
use crate::models;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateChatRequest {
#[serde(rename = "content", skip_serializing_if = "Option::is_none")]
pub content: Option<String>,
}
impl CreateChatRequest {
pub fn new() -> CreateChatRequest {
CreateChatRequest {
content: None,
}
}
}