Struct actix_telegram::types::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,
}

This object represents a shipping address.

Fields

ISO 3166-1 alpha-2 country code

State, if applicable

City

First line for the address

Second line for the address

Address post code

Trait Implementations

impl Debug for ShippingAddress
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations