#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct PatchedDashboardRequest {
#[serde(
rename = "layout",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub layout: Option<Option<serde_json::Value>>,
#[serde(
rename = "config",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub config: Option<Option<serde_json::Value>>,
}
impl PatchedDashboardRequest {
pub fn new() -> PatchedDashboardRequest {
PatchedDashboardRequest {
layout: None,
config: None,
}
}
}