UNPKG

@sp-api-sdk/merchant-fulfillment-api-v0

Version:

With the Selling Partner API for Merchant Fulfillment, you can build applications that sellers can use to purchase shipping for non-Prime and Prime orders using Amazon's Buy Shipping Services.

61 lines (60 loc) 1.56 kB
/** * Selling Partner API for Merchant Fulfillment * With the Selling Partner API for Merchant Fulfillment, you can build applications that sellers can use to purchase shipping for non-Prime and Prime orders using Amazon\'s Buy Shipping Services. * * The version of the OpenAPI document: v0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The postal address information. */ export interface Address { /** * The name of the addressee, or business name. */ 'Name': string; /** * The street address information. */ 'AddressLine1': string; /** * Additional street address information. */ 'AddressLine2'?: string; /** * Additional street address information. */ 'AddressLine3'?: string; /** * The district or county. */ 'DistrictOrCounty'?: string; /** * The email address. */ 'Email': string; /** * The city. */ 'City': string; /** * The state or province code. This is a required field in Canada, US, and UK marketplaces, and for shipments that originate in China. */ 'StateOrProvinceCode'?: string; /** * The zip code or postal code. */ 'PostalCode': string; /** * The two-letter country code in [ISO 3166-1 alpha-2](https://www.iban.com/country-codes) format. */ 'CountryCode': string; /** * The phone number. */ 'Phone': string; }