zernio 0.0.132

API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
Documentation
/*
 * Zernio API
 *
 * API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
 *
 * The version of the OpenAPI document: 1.0.1
 * Contact: support@zernio.com
 * Generated by: https://openapi-generator.tech
 */

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WhatsAppHeaderComponent {
    #[serde(rename = "type")]
    pub r#type: Type,
    #[serde(rename = "format")]
    pub format: Format,
    /// Header text (may include {{1}} variable). Used when format is TEXT.
    #[serde(rename = "text", skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    #[serde(rename = "example", skip_serializing_if = "Option::is_none")]
    pub example: Option<Box<models::WhatsAppHeaderComponentExample>>,
}

impl WhatsAppHeaderComponent {
    pub fn new(r#type: Type, format: Format) -> WhatsAppHeaderComponent {
        WhatsAppHeaderComponent {
            r#type,
            format,
            text: None,
            example: None,
        }
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "header")]
    Header,
}

impl Default for Type {
    fn default() -> Type {
        Self::Header
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Format {
    #[serde(rename = "text")]
    Text,
    #[serde(rename = "image")]
    Image,
    #[serde(rename = "video")]
    Video,
    #[serde(rename = "gif")]
    Gif,
    #[serde(rename = "document")]
    Document,
    #[serde(rename = "location")]
    Location,
}

impl Default for Format {
    fn default() -> Format {
        Self::Text
    }
}