linkbreakers 1.101.0

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

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CornersDotOptions {
    #[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 CornersDotOptions {
    pub fn new() -> CornersDotOptions {
        CornersDotOptions {
            theme_color: None,
            r#type: None,
        }
    }
}
/// 
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "CORNERS_DOT_TYPE_UNSPECIFIED")]
    CornersDotTypeUnspecified,
    #[serde(rename = "CORNERS_DOT_TYPE_DOT")]
    CornersDotTypeDot,
    #[serde(rename = "CORNERS_DOT_TYPE_SQUARE")]
    CornersDotTypeSquare,
    #[serde(rename = "CORNERS_DOT_TYPE_HEXAGON")]
    CornersDotTypeHexagon,
    #[serde(rename = "CORNERS_DOT_TYPE_OCTAGON")]
    CornersDotTypeOctagon,
    #[serde(rename = "CORNERS_DOT_TYPE_TEARDROP")]
    CornersDotTypeTeardrop,
    #[serde(rename = "CORNERS_DOT_TYPE_STAR")]
    CornersDotTypeStar,
}

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