@sp-api-sdk/fulfillment-inbound-api-v0
Version:
The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon's fulfillment network.
32 lines (31 loc) • 1.06 kB
TypeScript
/**
* Selling Partner API for Fulfillment Inbound
* The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon\'s fulfillment network.
*
* 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 { InboundShipmentItem } from './inbound-shipment-item';
/**
* Result for the get shipment items operation
* @export
* @interface GetShipmentItemsResult
*/
export interface GetShipmentItemsResult {
/**
* A list of inbound shipment item information.
* @type {Array<InboundShipmentItem>}
* @memberof GetShipmentItemsResult
*/
'ItemData'?: Array<InboundShipmentItem>;
/**
* When present and not empty, pass this string token in the next request to return the next response page.
* @type {string}
* @memberof GetShipmentItemsResult
*/
'NextToken'?: string;
}