Struct telbot_types::payment::ShippingAddress [−][src]
pub struct ShippingAddress {
pub country_code: String,
pub state: String,
pub city: String,
pub street_line1: String,
pub street_line2: String,
pub post_code: String,
}Expand description
This object represents a shipping address.
Fields
country_code: StringISO 3166-1 alpha-2 country code
state: StringState, if applicable
city: StringCity
street_line1: StringFirst line for the address
street_line2: StringSecond line for the address
post_code: StringAddress post code
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more