/**
 * The Selling Partner API for Sellers
 * The [Selling Partner API for Sellers](https://developer-docs.amazon.com/sp-api/docs/sellers-api-v1-reference) (Sellers API) provides essential information about seller accounts, such as:  - The marketplaces a seller can list in - The default language and currency of a marketplace - Whether the seller has suspended listings  Refer to the [Sellers API reference](https://developer-docs.amazon.com/sp-api/docs/sellers-api-v1-reference) for details about this API\'s operations, data types, and schemas.
 *
 * The version of the OpenAPI document: v1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Represents an address
 * @export
 * @interface Address
 */
export interface Address {
    /**
     * Street address information.
     * @type {string}
     * @memberof Address
     */
    'addressLine1': string;
    /**
     * Additional street address information.
     * @type {string}
     * @memberof Address
     */
    'addressLine2'?: string;
    /**
     * The country code in two-character ISO 3166-1 alpha-2 format.
     * @type {string}
     * @memberof Address
     */
    'countryCode': string;
    /**
     * The state or province code.
     * @type {string}
     * @memberof Address
     */
    'stateOrProvinceCode'?: string;
    /**
     * The city.
     * @type {string}
     * @memberof Address
     */
    'city'?: string;
    /**
     * The postal code.
     * @type {string}
     * @memberof Address
     */
    'postalCode'?: string;
}
