useserde::Deserialize;/// Represents [`ShippingAddress`][docs].
////// [docs]: https://core.telegram.org/bots/api#shippingaddress
#[derive(Debug, PartialEq, Eq, Clone, Hash, Deserialize)]// todo: #[non_exhaustive]
pubstructAddress{/// The ISO 3166-1 alpha-2 country code.
pubcountry_code: String,
/// The state, if apllicable.
pubstate: String,
/// The city.
pubcity: String,
/// The first line of the address.
pubstreet_line1: String,
/// The second line of the address.
pubstreet_line2: String,
/// The post code.
pubpost_code: String,
}