// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
use crate::types::InlineQueryResultGif;
impl InlineQueryResultGif {
/// This function creates an empty struct for the object InlineQueryResultGif.
pub fn new() -> Self {
Self {
id: "".to_string(),
gif_url: "".to_string(),
gif_width: None,
gif_height: None,
gif_duration: None,
thumb_url: "".to_string(),
thumb_mime_type: None,
title: None,
caption: None,
parse_mode: None,
caption_entities: None,
reply_markup: None,
input_message_content: None,
}
}
}
impl Default for InlineQueryResultGif {
fn default() -> Self {
Self::new()
}
}