/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.77.5
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WidgetSize {
#[serde(rename = "h", skip_serializing_if = "Option::is_none")]
pub h: Option<i32>,
#[serde(rename = "w", skip_serializing_if = "Option::is_none")]
pub w: Option<i32>,
}
impl WidgetSize {
pub fn new() -> WidgetSize {
WidgetSize {
h: None,
w: None,
}
}
}