linkbreakers 1.77.5

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

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

/// DevicePlatformConditionOption : Device platform condition option for EVENT_ACTION_DEVICE_PLATFORM_CONDITION.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DevicePlatformConditionOption {
    #[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>,
    /// Platform / operating system to match.
    #[serde(rename = "value", skip_serializing_if = "Option::is_none")]
    pub value: Option<models::DevicePlatformConditionValue>,
}

impl DevicePlatformConditionOption {
    /// Device platform condition option for EVENT_ACTION_DEVICE_PLATFORM_CONDITION.
    pub fn new() -> DevicePlatformConditionOption {
        DevicePlatformConditionOption {
            id: None,
            name: None,
            next_step_id: None,
            value: None,
        }
    }
}