#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::InlineQueryResultMpeg4Gif;
impl InlineQueryResultMpeg4Gif {
pub fn new(id: String, mpeg4_url: String, thumbnail_url: String) -> Self {
Self {
id,
mpeg4_url,
mpeg4_width: None,
mpeg4_height: None,
mpeg4_duration: None,
thumbnail_url,
thumbnail_mime_type: None,
title: None,
caption: None,
parse_mode: None,
caption_entities: None,
show_caption_above_media: None,
reply_markup: None,
input_message_content: None,
}
}
}