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,
#[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
}
}