UNPKG

@sp-api-sdk/fulfillment-outbound-api-2020-07-01

Version:

The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon's fulfillment network. You can get information on both potential and existing fulfill

33 lines (32 loc) 1.16 kB
/** * Selling Partner APIs for Fulfillment Outbound * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon\'s fulfillment network. You can get information on both potential and existing fulfillment orders. * * The version of the OpenAPI document: 2020-07-01 * * * 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 { GetDeliveryOffersProduct } from './get-delivery-offers-product'; import type { GetDeliveryOffersTerms } from './get-delivery-offers-terms'; /** * The request body schema for the getDeliveryOffers operation. * @export * @interface GetDeliveryOffersRequest */ export interface GetDeliveryOffersRequest { /** * * @type {GetDeliveryOffersProduct} * @memberof GetDeliveryOffersRequest */ 'product': GetDeliveryOffersProduct; /** * * @type {GetDeliveryOffersTerms} * @memberof GetDeliveryOffersRequest */ 'terms': GetDeliveryOffersTerms; }