pub struct Address {Show 15 fields
pub name: String,
pub company_name: Option<String>,
pub address_line1: Option<String>,
pub address_line2: Option<String>,
pub address_line3: Option<String>,
pub city: Option<String>,
pub county: Option<String>,
pub district: Option<String>,
pub state_or_region: Option<String>,
pub municipality: Option<String>,
pub postal_code: Option<String>,
pub country_code: Option<String>,
pub phone: Option<String>,
pub extended_fields: Option<Box<AddressExtendedFields>>,
pub address_type: Option<AddressType>,
}Expand description
Address : The shipping address for the order.
Fields§
§name: StringThe name.
company_name: Option<String>The company name of the recipient. Note: This attribute is only available for shipping address.
address_line1: Option<String>The street address.
address_line2: Option<String>Additional street address information, if required.
address_line3: Option<String>Additional street address information, if required.
city: Option<String>The city.
county: Option<String>The county.
district: Option<String>The district.
state_or_region: Option<String>The state or region.
municipality: Option<String>The municipality.
postal_code: Option<String>The postal code.
country_code: Option<String>The country code. A two-character country code, in ISO 3166-1 alpha-2 format.
phone: Option<String>The phone number of the buyer. Note: 1. This attribute is only available for shipping address. 2. In some cases, the buyer phone number is suppressed: a. Phone is suppressed for all AFN (fulfilled by Amazon) orders. b. Phone is suppressed for the shipped MFN (fulfilled by seller) order when the current date is past the Latest Delivery Date.
extended_fields: Option<Box<AddressExtendedFields>>§address_type: Option<AddressType>The address type of the shipping address.