UNPKG

@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

59 lines (58 loc) 2.06 kB
/** * 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. */ import type { BoxContentInformationSource } from './box-content-information-source'; import type { Dimensions } from './dimensions'; import type { ItemInput } from './item-input'; import type { Weight } from './weight'; /** * Input information for updating a box * @export * @interface BoxUpdateInput */ export interface BoxUpdateInput { /** * * @type {BoxContentInformationSource} * @memberof BoxUpdateInput */ 'contentInformationSource': BoxContentInformationSource; /** * * @type {Dimensions} * @memberof BoxUpdateInput */ 'dimensions': Dimensions; /** * The items and their quantity in the box. This must be empty if the box `contentInformationSource` is `BARCODE_2D` or `MANUAL_PROCESS`. * @type {Array<ItemInput>} * @memberof BoxUpdateInput */ 'items'?: Array<ItemInput>; /** * Primary key to uniquely identify a Box Package. PackageId must be provided if the intent is to update an existing box. Adding a new box will not require providing this value. Any existing PackageIds not provided will be treated as to-be-removed * @type {string} * @memberof BoxUpdateInput */ 'packageId'?: string; /** * The number of containers where all other properties like weight or dimensions are identical. * @type {number} * @memberof BoxUpdateInput */ 'quantity': number; /** * * @type {Weight} * @memberof BoxUpdateInput */ 'weight': Weight; }