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
use crate::model::ReplyMarkup;
use serde::{Deserialize, Serialize};

/// struct for holding data needed to call
/// [`send_game`]
///
/// [`send_game`]:
/// ../../api/trait.API.html#method.send_game
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct SendGame {
    /// Unique identifier for the target chat
    pub chat_id: i64,
    /// Short name of the game, serves as the unique identifier for the game.
    /// Set up your games via Botfather.
    pub game_short_name: String,
    /// Sends the message silently. Users will receive a notification with no
    /// sound.
    pub disable_notification: bool,
    /// If the message is a reply, ID of the original message
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reply_to_message_id: Option<i64>,
    /// Additional interface options.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reply_markup: Option<ReplyMarkup>,
}

/// struct for holding data needed to call
/// [`set_game_score`]
///
/// [`set_game_score`]:
/// ../../api/trait.API.html#method.set_game_score
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct SetGameScore {
    /// User identifier
    pub user_id: i64,
    /// New score
    pub score: i64,
    /// Pass True, if the high score is allowed to decrease.
    /// This can be useful when fixing mistakes or banning cheaters
    pub force: bool,
    /// Pass True, if the game message should not be automatically edited to
    /// include the current scoreboard
    pub disable_edit_message: bool,
    /// Required if inline_message_id is not specified. Unique identifier for
    /// the target chat
    #[serde(skip_serializing_if = "Option::is_none")]
    pub chat_id: Option<i64>,
    /// Required if inline_message_id is not specified. Identifier of the sent
    /// message
    #[serde(skip_serializing_if = "Option::is_none")]
    pub message_id: Option<i64>,
    /// Required if chat_id and message_id are not specified. Identifier of the
    /// inline message
    #[serde(skip_serializing_if = "Option::is_none")]
    pub inline_message_id: Option<String>,
}

/// struct for holding data needed to call
/// [`get_game_high_scores`]
///
/// [`get_game_high_scores`]:
/// ../../api/trait.API.html#method.get_game_high_scores
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct GetGameHighScores {
    /// Target user id
    pub user_id: i64,
    /// Required if inline_message_id is not specified. Unique identifier for
    /// the target chat
    #[serde(skip_serializing_if = "Option::is_none")]
    pub chat_id: Option<i64>,
    /// Required if inline_message_id is not specified. Identifier of the sent
    /// message
    #[serde(skip_serializing_if = "Option::is_none")]
    pub message_id: Option<i64>,
    /// Required if chat_id and message_id are not specified. Identifier of the
    /// inline message
    #[serde(skip_serializing_if = "Option::is_none")]
    pub inline_message_id: Option<String>,
}