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