#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct DataEditUserProfile {
#[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<String>>,
}
impl DataEditUserProfile {
pub fn new() -> DataEditUserProfile {
DataEditUserProfile {
content: None,
background: None,
}
}
}