zernio 0.0.98

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};

/// GoogleBusinessPlatformDataCallToAction : Optional call-to-action button displayed on the post
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GoogleBusinessPlatformDataCallToAction {
    /// Button action type: LEARN_MORE, BOOK, ORDER, SHOP, SIGN_UP, CALL
    #[serde(rename = "type")]
    pub r#type: Type,
    /// Destination URL for the CTA button (required when callToAction is provided)
    #[serde(rename = "url")]
    pub url: String,
}

impl GoogleBusinessPlatformDataCallToAction {
    /// Optional call-to-action button displayed on the post
    pub fn new(r#type: Type, url: String) -> GoogleBusinessPlatformDataCallToAction {
        GoogleBusinessPlatformDataCallToAction { r#type, url }
    }
}
/// Button action type: LEARN_MORE, BOOK, ORDER, SHOP, SIGN_UP, CALL
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
    #[serde(rename = "LEARN_MORE")]
    LearnMore,
    #[serde(rename = "BOOK")]
    Book,
    #[serde(rename = "ORDER")]
    Order,
    #[serde(rename = "SHOP")]
    Shop,
    #[serde(rename = "SIGN_UP")]
    SignUp,
    #[serde(rename = "CALL")]
    Call,
}

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