linkbreakers 1.52.6

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.52.6
 * 
 * Generated by: https://openapi-generator.tech
 */

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

/// DeviceBrandConditionOption : Device brand condition option for EVENT_ACTION_DEVICE_BRAND_CONDITION.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DeviceBrandConditionOption {
    #[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>,
    #[serde(rename = "nextStepId", skip_serializing_if = "Option::is_none")]
    pub next_step_id: Option<String>,
    /// Hardware brand to match.
    #[serde(rename = "value", skip_serializing_if = "Option::is_none")]
    pub value: Option<models::DeviceBrandConditionValue>,
}

impl DeviceBrandConditionOption {
    /// Device brand condition option for EVENT_ACTION_DEVICE_BRAND_CONDITION.
    pub fn new() -> DeviceBrandConditionOption {
        DeviceBrandConditionOption {
            id: None,
            name: None,
            next_step_id: None,
            value: None,
        }
    }
}