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

impl ShippingOption {
    /// This function creates an empty struct for the object ShippingOption.
    pub fn new() -> Self {
        Self {
            id: "".to_string(),
            title: "".to_string(),
            prices: Vec::new(),
        }
    }
}
impl Default for ShippingOption {
    fn default() -> Self {
        Self::new()
    }
}