linkbreakers 1.80.1

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

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DotsOptions {
    #[serde(rename = "themeColor", skip_serializing_if = "Option::is_none")]
    pub theme_color: Option<Box<models::ThemeColor>>,
    #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
    pub r#type: Option<Type>,
}

impl DotsOptions {
    pub fn new() -> DotsOptions {
        DotsOptions {
            theme_color: None,
            r#type: None,
        }
    }
}
/// 
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "DOTS_TYPE_UNSPECIFIED")]
    DotsTypeUnspecified,
    #[serde(rename = "DOTS_TYPE_SQUARE")]
    DotsTypeSquare,
    #[serde(rename = "DOTS_TYPE_DOTS")]
    DotsTypeDots,
    #[serde(rename = "DOTS_TYPE_BUBBLY_DOTS")]
    DotsTypeBubblyDots,
    #[serde(rename = "DOTS_TYPE_CIRCUIT_CHIP")]
    DotsTypeCircuitChip,
    #[serde(rename = "DOTS_TYPE_ROUNDED")]
    DotsTypeRounded,
    #[serde(rename = "DOTS_TYPE_EXTRA_ROUNDED")]
    DotsTypeExtraRounded,
    #[serde(rename = "DOTS_TYPE_CLASSY")]
    DotsTypeClassy,
    #[serde(rename = "DOTS_TYPE_CLASSY_ROUNDED")]
    DotsTypeClassyRounded,
    #[serde(rename = "DOTS_TYPE_HEXAGON")]
    DotsTypeHexagon,
    #[serde(rename = "DOTS_TYPE_OCTAGON")]
    DotsTypeOctagon,
}

impl Default for Type {
    fn default() -> Type {
        Self::DotsTypeUnspecified
    }
}