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::ShippingAddress;
use crate::types::ShippingQuery;
use crate::types::User;

impl ShippingQuery {
    /// This function creates an empty struct for the object ShippingQuery.
    pub fn new() -> Self {
        Self {
            id: "".to_string(),
            from: User::new(),
            invoice_payload: "".to_string(),
            shipping_address: ShippingAddress::new(),
        }
    }
}
impl Default for ShippingQuery {
    fn default() -> Self {
        Self::new()
    }
}