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::InlineQueryResultLocation;

impl InlineQueryResultLocation {
    /// This function creates an empty struct for the object InlineQueryResultLocation.
    pub fn new() -> Self {
        Self {
            id: "".to_string(),
            latitude: 0.0,
            longitude: 0.0,
            title: "".to_string(),
            horizontal_accuracy: None,
            live_period: None,
            heading: None,
            proximity_alert_radius: None,
            reply_markup: None,
            input_message_content: None,
            thumb_url: None,
            thumb_width: None,
            thumb_height: None,
        }
    }
}
impl Default for InlineQueryResultLocation {
    fn default() -> Self {
        Self::new()
    }
}