#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct DashboardGadgetPosition {
#[serde(rename = "The row position of the gadget.")]
pub the_row_position_of_the_gadget_: i32,
#[serde(rename = "The column position of the gadget.")]
pub the_column_position_of_the_gadget_: i32,
}
impl DashboardGadgetPosition {
pub fn new(the_row_position_of_the_gadget_: i32, the_column_position_of_the_gadget_: i32) -> DashboardGadgetPosition {
DashboardGadgetPosition {
the_row_position_of_the_gadget_,
the_column_position_of_the_gadget_,
}
}
}