mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Add InlineQueryResultCachedSticker
This commit is contained in:
parent
449780c606
commit
7c9eb4e803
1 changed files with 12 additions and 0 deletions
12
src/core/types/inline_query_result_cached_sticker.rs
Normal file
12
src/core/types/inline_query_result_cached_sticker.rs
Normal file
|
@ -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<InlineKeyboardMarkup>,
|
||||
pub input_message_content: Option<InputMessageContent>,
|
||||
}
|
Loading…
Reference in a new issue