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

impl KeyboardButton {
    /// This function creates an empty struct for the object KeyboardButton.
    pub fn new() -> Self {
        Self {
            text: "".to_string(),
            request_contact: None,
            request_location: None,
            request_poll: None,
            web_app: None,
        }
    }
}
impl Default for KeyboardButton {
    fn default() -> Self {
        Self::new()
    }
}