diff --git a/src/core/types/inline_query_result_cached_sticker.rs b/src/core/types/inline_query_result_cached_sticker.rs new file mode 100644 index 00000000..b53a7c31 --- /dev/null +++ b/src/core/types/inline_query_result_cached_sticker.rs @@ -0,0 +1,12 @@ +use super::inline_keyboard_markup::InlineKeyboardMarkup; +use super::input_message_content::InputMessageContent; + +#[derive(Debug, Deserialize, Clone, PartialEq)] +pub struct InlineQueryResultCachedSticker { + #[serde(rename = "type")] + pub query_type: String, + pub id: String, + pub sticker_file_id: String, + pub reply_markup: Option, + pub input_message_content: Option, +} \ No newline at end of file