@sp-api-sdk/fulfillment-inbound-api-2024-03-20
Version:
The Selling Partner API for Fulfillment By Amazon (FBA) Inbound. The FBA Inbound API enables building inbound workflows to create, manage, and send shipments into Amazon's fulfillment network. The API has interoperability with the Send-to-Amazon user inte
79 lines (78 loc) • 1.99 kB
TypeScript
/**
* The Selling Partner API for FBA inbound operations.
* The Selling Partner API for Fulfillment By Amazon (FBA) Inbound. The FBA Inbound API enables building inbound workflows to create, manage, and send shipments into Amazon\'s fulfillment network. The API has interoperability with the Send-to-Amazon user interface.
*
* The version of the OpenAPI document: 2024-03-20
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Specific details to identify a place.
* @export
* @interface AddressInput
*/
export interface AddressInput {
/**
* Street address information.
* @type {string}
* @memberof AddressInput
*/
'addressLine1': string;
/**
* Additional street address information.
* @type {string}
* @memberof AddressInput
*/
'addressLine2'?: string;
/**
* The city.
* @type {string}
* @memberof AddressInput
*/
'city': string;
/**
* The name of the business.
* @type {string}
* @memberof AddressInput
*/
'companyName'?: string;
/**
* The country code in two-character ISO 3166-1 alpha-2 format.
* @type {string}
* @memberof AddressInput
*/
'countryCode': string;
/**
* The email address.
* @type {string}
* @memberof AddressInput
*/
'email'?: string;
/**
* The name of the individual who is the primary contact.
* @type {string}
* @memberof AddressInput
*/
'name': string;
/**
* The phone number.
* @type {string}
* @memberof AddressInput
*/
'phoneNumber': string;
/**
* The postal code.
* @type {string}
* @memberof AddressInput
*/
'postalCode': string;
/**
* The state or province code.
* @type {string}
* @memberof AddressInput
*/
'stateOrProvinceCode'?: string;
}