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

45 lines (44 loc) 1.49 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 { OperationProblem } from './operation-problem'; import type { OperationStatus } from './operation-status'; /** * GetInboundOperationStatus response. * @export * @interface InboundOperationStatus */ export interface InboundOperationStatus { /** * The name of the operation in the asynchronous API call. * @type {string} * @memberof InboundOperationStatus */ 'operation': string; /** * The operation ID returned by the asynchronous API call. * @type {string} * @memberof InboundOperationStatus */ 'operationId': string; /** * The problems in the processing of the asynchronous operation. * @type {Array<OperationProblem>} * @memberof InboundOperationStatus */ 'operationProblems': Array<OperationProblem>; /** * * @type {OperationStatus} * @memberof InboundOperationStatus */ 'operationStatus': OperationStatus; }