ferrisgram 0.1.5

An elegent rust client for the Telegram Bot API.
Documentation
// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!

use crate::types::InlineQueryResultGame;

impl InlineQueryResultGame {
    /// This function creates an empty struct for the object InlineQueryResultGame.
    pub fn new() -> Self {
        Self {
            id: "".to_string(),
            game_short_name: "".to_string(),
            reply_markup: None,
        }
    }
}
impl Default for InlineQueryResultGame {
    fn default() -> Self {
        Self::new()
    }
}