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

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