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 WhatsAppHeaderComponentExample {
    /// Sample values for header text variables
    #[serde(rename = "header_text", skip_serializing_if = "Option::is_none")]
    pub header_text: Option<Vec<String>>,
    /// When the header format is a media type (image, video, gif, document), provide a public URL here. Zernio will download and upload it to WhatsApp on your behalf, replacing it with the internal file handle before creating the template.
    #[serde(rename = "header_handle", skip_serializing_if = "Option::is_none")]
    pub header_handle: Option<Vec<String>>,
}

impl WhatsAppHeaderComponentExample {
    pub fn new() -> WhatsAppHeaderComponentExample {
        WhatsAppHeaderComponentExample {
            header_text: None,
            header_handle: None,
        }
    }
}