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
53
54
55
56
57
/*
* 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.4
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// CreateInboxConversationRequestHeaderMedia : WhatsApp only. Overrides a media-header template's header asset for THIS send, so a template with an image/video/document header can carry a different asset per message (e.g. each recipient their own invoice PDF). Without it, the template's approved sample asset is sent. Provide exactly one of link or id.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateInboxConversationRequestHeaderMedia {
/// Must match the template header's media type.
#[serde(rename = "type")]
pub r#type: Type,
/// Public URL of the asset to send. Must be reachable without auth.
#[serde(rename = "link", skip_serializing_if = "Option::is_none")]
pub link: Option<String>,
/// A Meta media id (from the media upload endpoint), as an alternative to link.
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
/// Document display name shown to the recipient (e.g. \"Factura 0001-123.pdf\"). document type only; ignored for image/video.
#[serde(rename = "filename", skip_serializing_if = "Option::is_none")]
pub filename: Option<String>,
}
impl CreateInboxConversationRequestHeaderMedia {
/// WhatsApp only. Overrides a media-header template's header asset for THIS send, so a template with an image/video/document header can carry a different asset per message (e.g. each recipient their own invoice PDF). Without it, the template's approved sample asset is sent. Provide exactly one of link or id.
pub fn new(r#type: Type) -> CreateInboxConversationRequestHeaderMedia {
CreateInboxConversationRequestHeaderMedia {
r#type,
link: None,
id: None,
filename: None,
}
}
}
/// Must match the template header's media type.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "image")]
Image,
#[serde(rename = "video")]
Video,
#[serde(rename = "document")]
Document,
}
impl Default for Type {
fn default() -> Type {
Self::Image
}
}