// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
use serde::{Deserialize, Serialize};
/// This object represents a shipping address.
/// <https://core.telegram.org/bots/api#shippingaddress>
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ShippingAddress {
/// Two-letter ISO 3166-1 alpha-2 country code
pub country_code: String,
/// State, if applicable
pub state: String,
/// City
pub city: String,
/// First line for the address
pub street_line1: String,
/// Second line for the address
pub street_line2: String,
/// Address post code
pub post_code: String,
}