linkbreakers 1.46.14

Official Rust SDK for the Linkbreakers API
Documentation
/*
 * Linkbreakers API
 *
 * This is a documentation of all the APIs of Linkbreakers
 *
 * The version of the OpenAPI document: 1.46.14
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DeviceBrandConditionTraceOption {
    #[serde(rename = "deviceBrand", skip_serializing_if = "Option::is_none")]
    pub device_brand: Option<String>,
    #[serde(rename = "hasRoute", skip_serializing_if = "Option::is_none")]
    pub has_route: Option<bool>,
    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
}

impl DeviceBrandConditionTraceOption {
    pub fn new() -> DeviceBrandConditionTraceOption {
        DeviceBrandConditionTraceOption {
            device_brand: None,
            has_route: None,
            id: None,
            name: None,
        }
    }
}