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

impl InputContactMessageContent {
    /// This function creates an empty struct for the object InputContactMessageContent.
    pub fn new() -> Self {
        Self {
            first_name: "".to_string(),
            last_name: None,
            vcard: None,
        }
    }
}
impl Default for InputContactMessageContent {
    fn default() -> Self {
        Self::new()
    }
}