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
58
59
60
61
62
63
/*
* 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};
/// TelegramPlatformData : Text, images (up to 10), videos (up to 10), and mixed media albums. Captions up to 1024 chars for media, 4096 for text-only.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TelegramPlatformData {
/// Text formatting mode for the message (default is HTML)
#[serde(rename = "parseMode", skip_serializing_if = "Option::is_none")]
pub parse_mode: Option<ParseMode>,
/// Disable link preview generation for URLs in the message
#[serde(
rename = "disableWebPagePreview",
skip_serializing_if = "Option::is_none"
)]
pub disable_web_page_preview: Option<bool>,
/// Send the message silently (users will receive notification without sound)
#[serde(
rename = "disableNotification",
skip_serializing_if = "Option::is_none"
)]
pub disable_notification: Option<bool>,
/// Protect message content from forwarding and saving
#[serde(rename = "protectContent", skip_serializing_if = "Option::is_none")]
pub protect_content: Option<bool>,
}
impl TelegramPlatformData {
/// Text, images (up to 10), videos (up to 10), and mixed media albums. Captions up to 1024 chars for media, 4096 for text-only.
pub fn new() -> TelegramPlatformData {
TelegramPlatformData {
parse_mode: None,
disable_web_page_preview: None,
disable_notification: None,
protect_content: None,
}
}
}
/// Text formatting mode for the message (default is HTML)
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum ParseMode {
#[serde(rename = "HTML")]
Html,
#[serde(rename = "Markdown")]
Markdown,
#[serde(rename = "MarkdownV2")]
MarkdownV2,
}
impl Default for ParseMode {
fn default() -> ParseMode {
Self::Html
}
}