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