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 WhatsAppBodyComponent {
    #[serde(rename = "type")]
    pub r#type: Type,
    /// Body text with optional {{n}} variables
    #[serde(rename = "text")]
    pub text: String,
    /// Add security recommendation text (authentication templates only)
    #[serde(
        rename = "add_security_recommendation",
        skip_serializing_if = "Option::is_none"
    )]
    pub add_security_recommendation: Option<bool>,
    #[serde(rename = "example", skip_serializing_if = "Option::is_none")]
    pub example: Option<Box<models::WhatsAppBodyComponentExample>>,
}

impl WhatsAppBodyComponent {
    pub fn new(r#type: Type, text: String) -> WhatsAppBodyComponent {
        WhatsAppBodyComponent {
            r#type,
            text,
            add_security_recommendation: None,
            example: None,
        }
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "body")]
    Body,
}

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