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