@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.
38 lines (37 loc) • 993 B
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 { Amount } from './amount';
/**
* The manual processing fee per unit and total fee for a shipment.
* @export
* @interface BoxContentsFeeDetails
*/
export interface BoxContentsFeeDetails {
/**
* The item quantity.
* @type {number}
* @memberof BoxContentsFeeDetails
*/
'TotalUnits'?: number;
/**
*
* @type {Amount}
* @memberof BoxContentsFeeDetails
*/
'FeePerUnit'?: Amount;
/**
*
* @type {Amount}
* @memberof BoxContentsFeeDetails
*/
'TotalFee'?: Amount;
}