use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WhatsAppButtonsComponent {
#[serde(rename = "type")]
pub r#type: Type,
#[serde(rename = "buttons")]
pub buttons: Vec<models::WhatsAppTemplateButton>,
}
impl WhatsAppButtonsComponent {
pub fn new(
r#type: Type,
buttons: Vec<models::WhatsAppTemplateButton>,
) -> WhatsAppButtonsComponent {
WhatsAppButtonsComponent { r#type, buttons }
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "buttons")]
Buttons,
}
impl Default for Type {
fn default() -> Type {
Self::Buttons
}
}