#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct UserProfile {
#[serde(rename = "content", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub content: Option<Option<String>>,
#[serde(rename = "background", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub background: Option<Option<Box<crate::models::UserProfileBackground>>>,
}
impl UserProfile {
pub fn new() -> UserProfile {
UserProfile {
content: None,
background: None,
}
}
}