@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
40 lines (39 loc) • 1.62 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.
*/
import type { BoxContentInformationSource } from './box-content-information-source';
import type { BoxRequirements } from './box-requirements';
import type { ShippingRequirements } from './shipping-requirements';
/**
* A way to configure this packing option. Some box content information sources might not be allowed. Non-standard minimum and maximum box weights might be enforced.
* @export
* @interface PackingConfiguration
*/
export interface PackingConfiguration {
/**
* The box content information sources that are allowed.
* @type {Array<BoxContentInformationSource>}
* @memberof PackingConfiguration
*/
'boxPackingMethods'?: Array<BoxContentInformationSource>;
/**
*
* @type {BoxRequirements}
* @memberof PackingConfiguration
*/
'boxRequirements'?: BoxRequirements;
/**
* A list of supported shipping requirements for this packing configuration.
* @type {Array<ShippingRequirements>}
* @memberof PackingConfiguration
*/
'shippingRequirements'?: Array<ShippingRequirements>;
}