diff --git a/src/core/types/inline_query_result_mpeg4_gif.rs b/src/core/types/inline_query_result_mpeg4_gif.rs new file mode 100644 index 00000000..ce72ee01 --- /dev/null +++ b/src/core/types/inline_query_result_mpeg4_gif.rs @@ -0,0 +1,19 @@ +use super::inline_keyboard_markup::InlineKeyboardMarkup; +use super::input_message_content::InputMessageContent; + +#[derive(Debug, Deserialize, Clone, PartialEq)] +pub struct InlineQueryResultMpeg4Gif { + #[serde(rename = "type")] + pub query_type: String, + pub id: String, + pub mpeg4_url: String, + pub mpeg4_width: Option, + pub mpeg4_height: Option, + pub mpeg4_duration: Option, + pub thumb_url: String, + pub title: Option, + pub caption: Option, + pub parse_mode: Option, + pub reply_markup: Option, + pub input_message_content: Option, +} \ No newline at end of file