tele 0.1.23

Ergonomic Telegram Bot API SDK for Rust, built on reqx
Documentation
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
use std::collections::BTreeMap;

use serde::Deserialize;
use serde_json::Value;

use crate::types::bot::User;
use crate::types::common::{MessageId, UserId};
use crate::types::tagged::{strip_type, tagged_kind};

use super::common::{Chat, MessageEntity, PhotoSize};
use super::content::ChecklistTask;
use super::media::Document;
use super::model::Message;
use super::reply::MaybeInaccessibleMessage;

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct DirectMessagesTopic {
    pub topic_id: i64,
    #[serde(default)]
    pub user: Option<User>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ChecklistTasksDone {
    #[serde(default)]
    pub checklist_message: Option<Box<Message>>,
    #[serde(default)]
    pub marked_as_done_task_ids: Option<Vec<i64>>,
    #[serde(default)]
    pub marked_as_not_done_task_ids: Option<Vec<i64>>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ChecklistTasksAdded {
    #[serde(default)]
    pub checklist_message: Option<Box<Message>>,
    pub tasks: Vec<ChecklistTask>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ChatOwnerLeft {
    #[serde(default)]
    pub new_owner: Option<User>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ChatOwnerChanged {
    pub new_owner: User,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ProximityAlertTriggered {
    pub traveler: User,
    pub watcher: User,
    pub distance: u32,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ChatBoostAdded {
    pub boost_count: u32,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct BackgroundFillSolid {
    pub color: u32,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct BackgroundFillGradient {
    pub top_color: u32,
    pub bottom_color: u32,
    pub rotation_angle: u32,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct BackgroundFillFreeformGradient {
    pub colors: Vec<u32>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug)]
#[non_exhaustive]
pub enum BackgroundFill {
    Solid(BackgroundFillSolid),
    Gradient(BackgroundFillGradient),
    FreeformGradient(BackgroundFillFreeformGradient),
    Unknown(Value),
}

impl BackgroundFill {
    pub fn kind(&self) -> Option<&str> {
        match self {
            Self::Solid(_) => Some("solid"),
            Self::Gradient(_) => Some("gradient"),
            Self::FreeformGradient(_) => Some("freeform_gradient"),
            Self::Unknown(value) => tagged_kind(value),
        }
    }

    pub fn is_unknown(&self) -> bool {
        matches!(self, Self::Unknown(_))
    }

    pub fn as_solid(&self) -> Option<&BackgroundFillSolid> {
        match self {
            Self::Solid(value) => Some(value),
            Self::Gradient(_) | Self::FreeformGradient(_) | Self::Unknown(_) => None,
        }
    }

    pub fn as_gradient(&self) -> Option<&BackgroundFillGradient> {
        match self {
            Self::Gradient(value) => Some(value),
            Self::Solid(_) | Self::FreeformGradient(_) | Self::Unknown(_) => None,
        }
    }

    pub fn as_freeform_gradient(&self) -> Option<&BackgroundFillFreeformGradient> {
        match self {
            Self::FreeformGradient(value) => Some(value),
            Self::Solid(_) | Self::Gradient(_) | Self::Unknown(_) => None,
        }
    }

    pub fn as_unknown_value(&self) -> Option<&Value> {
        match self {
            Self::Unknown(value) => Some(value),
            Self::Solid(_) | Self::Gradient(_) | Self::FreeformGradient(_) => None,
        }
    }

    pub fn into_unknown_value(self) -> Option<Value> {
        match self {
            Self::Unknown(value) => Some(value),
            Self::Solid(_) | Self::Gradient(_) | Self::FreeformGradient(_) => None,
        }
    }
}

impl<'de> Deserialize<'de> for BackgroundFill {
    fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let value = Value::deserialize(deserializer)?;
        match tagged_kind(&value) {
            Some("solid") => serde_json::from_value(strip_type(value))
                .map(Self::Solid)
                .map_err(serde::de::Error::custom),
            Some("gradient") => serde_json::from_value(strip_type(value))
                .map(Self::Gradient)
                .map_err(serde::de::Error::custom),
            Some("freeform_gradient") => serde_json::from_value(strip_type(value))
                .map(Self::FreeformGradient)
                .map_err(serde::de::Error::custom),
            Some(_) | None => Ok(Self::Unknown(value)),
        }
    }
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct BackgroundTypeFill {
    pub fill: BackgroundFill,
    pub dark_theme_dimming: u32,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct BackgroundTypeWallpaper {
    pub document: Document,
    pub dark_theme_dimming: u32,
    #[serde(default)]
    pub is_blurred: bool,
    #[serde(default)]
    pub is_moving: bool,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct BackgroundTypePattern {
    pub document: Document,
    pub fill: BackgroundFill,
    pub intensity: u32,
    #[serde(default)]
    pub is_inverted: bool,
    #[serde(default)]
    pub is_moving: bool,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct BackgroundTypeChatTheme {
    pub theme_name: String,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug)]
#[non_exhaustive]
pub enum BackgroundType {
    Fill(BackgroundTypeFill),
    Wallpaper(Box<BackgroundTypeWallpaper>),
    Pattern(Box<BackgroundTypePattern>),
    ChatTheme(BackgroundTypeChatTheme),
    Unknown(Value),
}

impl BackgroundType {
    pub fn kind(&self) -> Option<&str> {
        match self {
            Self::Fill(_) => Some("fill"),
            Self::Wallpaper(_) => Some("wallpaper"),
            Self::Pattern(_) => Some("pattern"),
            Self::ChatTheme(_) => Some("chat_theme"),
            Self::Unknown(value) => tagged_kind(value),
        }
    }

    pub fn is_unknown(&self) -> bool {
        matches!(self, Self::Unknown(_))
    }

    pub fn as_fill(&self) -> Option<&BackgroundTypeFill> {
        match self {
            Self::Fill(value) => Some(value),
            Self::Wallpaper(_) | Self::Pattern(_) | Self::ChatTheme(_) | Self::Unknown(_) => None,
        }
    }

    pub fn as_wallpaper(&self) -> Option<&BackgroundTypeWallpaper> {
        match self {
            Self::Wallpaper(value) => Some(value),
            Self::Fill(_) | Self::Pattern(_) | Self::ChatTheme(_) | Self::Unknown(_) => None,
        }
    }

    pub fn as_pattern(&self) -> Option<&BackgroundTypePattern> {
        match self {
            Self::Pattern(value) => Some(value),
            Self::Fill(_) | Self::Wallpaper(_) | Self::ChatTheme(_) | Self::Unknown(_) => None,
        }
    }

    pub fn as_chat_theme(&self) -> Option<&BackgroundTypeChatTheme> {
        match self {
            Self::ChatTheme(value) => Some(value),
            Self::Fill(_) | Self::Wallpaper(_) | Self::Pattern(_) | Self::Unknown(_) => None,
        }
    }

    pub fn as_unknown_value(&self) -> Option<&Value> {
        match self {
            Self::Unknown(value) => Some(value),
            Self::Fill(_) | Self::Wallpaper(_) | Self::Pattern(_) | Self::ChatTheme(_) => None,
        }
    }

    pub fn into_unknown_value(self) -> Option<Value> {
        match self {
            Self::Unknown(value) => Some(value),
            Self::Fill(_) | Self::Wallpaper(_) | Self::Pattern(_) | Self::ChatTheme(_) => None,
        }
    }
}

impl<'de> Deserialize<'de> for BackgroundType {
    fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let value = Value::deserialize(deserializer)?;
        match tagged_kind(&value) {
            Some("fill") => serde_json::from_value(strip_type(value))
                .map(Self::Fill)
                .map_err(serde::de::Error::custom),
            Some("wallpaper") => serde_json::from_value(strip_type(value))
                .map(Box::new)
                .map(Self::Wallpaper)
                .map_err(serde::de::Error::custom),
            Some("pattern") => serde_json::from_value(strip_type(value))
                .map(Box::new)
                .map(Self::Pattern)
                .map_err(serde::de::Error::custom),
            Some("chat_theme") => serde_json::from_value(strip_type(value))
                .map(Self::ChatTheme)
                .map_err(serde::de::Error::custom),
            Some(_) | None => Ok(Self::Unknown(value)),
        }
    }
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ChatBackground {
    #[serde(rename = "type")]
    pub background_type: BackgroundType,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct VideoChatScheduled {
    pub start_date: i64,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Default, Deserialize)]
#[non_exhaustive]
pub struct VideoChatStarted {
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct VideoChatEnded {
    pub duration: u32,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct VideoChatParticipantsInvited {
    pub users: Vec<User>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct PaidMessagePriceChanged {
    pub paid_message_star_count: u64,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct DirectMessagePriceChanged {
    pub are_direct_messages_enabled: bool,
    #[serde(default)]
    pub direct_message_star_count: Option<u64>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct GiveawayCreated {
    #[serde(default)]
    pub prize_star_count: Option<u64>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct Giveaway {
    pub chats: Vec<Chat>,
    pub winners_selection_date: i64,
    pub winner_count: u32,
    #[serde(default)]
    pub only_new_members: bool,
    #[serde(default)]
    pub has_public_winners: bool,
    #[serde(default)]
    pub prize_description: Option<String>,
    #[serde(default)]
    pub country_codes: Option<Vec<String>>,
    #[serde(default)]
    pub prize_star_count: Option<u64>,
    #[serde(default)]
    pub premium_subscription_month_count: Option<u32>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct GiveawayWinners {
    pub chat: Chat,
    pub giveaway_message_id: MessageId,
    pub winners_selection_date: i64,
    pub winner_count: u32,
    pub winners: Vec<User>,
    #[serde(default)]
    pub additional_chat_count: Option<u32>,
    #[serde(default)]
    pub prize_star_count: Option<u64>,
    #[serde(default)]
    pub premium_subscription_month_count: Option<u32>,
    #[serde(default)]
    pub unclaimed_prize_count: Option<u32>,
    #[serde(default)]
    pub only_new_members: bool,
    #[serde(default)]
    pub was_refunded: bool,
    #[serde(default)]
    pub prize_description: Option<String>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct GiveawayCompleted {
    pub winner_count: u32,
    #[serde(default)]
    pub unclaimed_prize_count: Option<u32>,
    #[serde(default)]
    pub giveaway_message: Option<Box<Message>>,
    #[serde(default)]
    pub is_star_giveaway: bool,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ManagedBotCreated {
    pub bot: User,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct PollOptionAdded {
    #[serde(default)]
    pub poll_message: Option<Box<MaybeInaccessibleMessage>>,
    pub option_persistent_id: String,
    pub option_text: String,
    #[serde(default)]
    pub option_text_entities: Option<Vec<MessageEntity>>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct PollOptionDeleted {
    #[serde(default)]
    pub poll_message: Option<Box<MaybeInaccessibleMessage>>,
    pub option_persistent_id: String,
    pub option_text: String,
    #[serde(default)]
    pub option_text_entities: Option<Vec<MessageEntity>>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct WriteAccessAllowed {
    #[serde(default)]
    pub from_request: Option<bool>,
    #[serde(default)]
    pub web_app_name: Option<String>,
    #[serde(default)]
    pub from_attachment_menu: Option<bool>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct MessageAutoDeleteTimerChanged {
    pub message_auto_delete_time: u32,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct SharedUser {
    pub user_id: UserId,
    #[serde(default)]
    pub first_name: Option<String>,
    #[serde(default)]
    pub last_name: Option<String>,
    #[serde(default)]
    pub username: Option<String>,
    #[serde(default)]
    pub photo: Option<Vec<PhotoSize>>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct UsersShared {
    pub request_id: i64,
    pub users: Vec<SharedUser>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}

#[derive(Clone, Debug, Deserialize)]
#[non_exhaustive]
pub struct ChatShared {
    pub request_id: i64,
    pub chat_id: i64,
    #[serde(default)]
    pub title: Option<String>,
    #[serde(default)]
    pub username: Option<String>,
    #[serde(default)]
    pub photo: Option<Vec<PhotoSize>>,
    #[serde(flatten)]
    pub extra: BTreeMap<String, Value>,
}