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