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

impl InlineQueryResultVenue {
    /// This function creates an empty struct for the object InlineQueryResultVenue.
    pub fn new() -> Self {
        Self {
            id: "".to_string(),
            latitude: 0.0,
            longitude: 0.0,
            title: "".to_string(),
            address: "".to_string(),
            foursquare_id: None,
            foursquare_type: None,
            google_place_id: None,
            google_place_type: None,
            reply_markup: None,
            input_message_content: None,
            thumb_url: None,
            thumb_width: None,
            thumb_height: None,
        }
    }
}
impl Default for InlineQueryResultVenue {
    fn default() -> Self {
        Self::new()
    }
}