UNPKG

@sp-api-sdk/merchant-fulfillment-api-v0

Version:

With the Selling Partner API for Merchant Fulfillment, you can build applications that sellers can use to purchase shipping for non-Prime and Prime orders using Amazon's Buy Shipping Services.

45 lines (44 loc) 1.35 kB
/** * Selling Partner API for Merchant Fulfillment * With the Selling Partner API for Merchant Fulfillment, you can build applications that sellers can use to purchase shipping for non-Prime and Prime orders using Amazon\'s Buy Shipping Services. * * 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 { Address } from './address'; import type { CurrencyAmount } from './currency-amount'; import type { Length } from './length'; import type { Weight } from './weight'; /** * Additional information required to purchase shipping. */ export interface AdditionalSellerInput { /** * The data type of the additional information. */ 'DataType'?: string; /** * The value when the data type is string. */ 'ValueAsString'?: string; /** * The value when the data type is boolean. */ 'ValueAsBoolean'?: boolean; /** * The value when the data type is integer. */ 'ValueAsInteger'?: number; /** * Date-time formatted timestamp. */ 'ValueAsTimestamp'?: string; 'ValueAsAddress'?: Address; 'ValueAsWeight'?: Weight; 'ValueAsDimension'?: Length; 'ValueAsCurrency'?: CurrencyAmount; }