1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* 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
}
}