@sp-api-sdk/shipment-invoicing-api-v0
Version:
The Selling Partner API for Shipment Invoicing helps you programmatically retrieve shipment invoice information in the Brazil marketplace for a selling partner’s Fulfillment by Amazon (FBA) orders.
63 lines (62 loc) • 1.44 kB
TypeScript
/**
* Selling Partner API for Shipment Invoicing
* The Selling Partner API for Shipment Invoicing helps you programmatically retrieve shipment invoice information in the Brazil marketplace for a selling partner’s Fulfillment by Amazon (FBA) orders.
*
* 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.
*/
import type { AddressTypeEnum } from './address-type-enum';
/**
* The shipping address details of the shipment.
*/
export interface Address {
/**
* The name.
*/
'Name'?: string;
/**
* The street address.
*/
'AddressLine1'?: string;
/**
* Additional street address information, if required.
*/
'AddressLine2'?: string;
/**
* Additional street address information, if required.
*/
'AddressLine3'?: string;
/**
* The city.
*/
'City'?: string;
/**
* The county.
*/
'County'?: string;
/**
* The district.
*/
'District'?: string;
/**
* The state or region.
*/
'StateOrRegion'?: string;
/**
* The postal code.
*/
'PostalCode'?: string;
/**
* The country code.
*/
'CountryCode'?: string;
/**
* The phone number.
*/
'Phone'?: string;
'AddressType'?: AddressTypeEnum;
}