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.

55 lines (54 loc) 2.26 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. */ /** * Details related to any dangerous goods or items that are shipped. */ export interface DangerousGoodsDetails { /** * The specific UNID of the item being shipped. */ 'UnitedNationsRegulatoryId'?: string; /** * The specific regulatory class of the shipped item. */ 'TransportationRegulatoryClass'?: string; /** * The specific packaging group of the item being shipped. */ 'PackingGroup'?: DangerousGoodsDetailsPackingGroupEnum; /** * The specific packing instruction of the item being shipped. */ 'PackingInstruction'?: DangerousGoodsDetailsPackingInstructionEnum; } export declare const DangerousGoodsDetailsPackingGroupEnum: { readonly I: "I"; readonly Ii: "II"; readonly Iii: "III"; }; export type DangerousGoodsDetailsPackingGroupEnum = typeof DangerousGoodsDetailsPackingGroupEnum[keyof typeof DangerousGoodsDetailsPackingGroupEnum]; export declare const DangerousGoodsDetailsPackingInstructionEnum: { readonly Pi965SectionIa: "PI965_SECTION_IA"; readonly Pi965SectionIb: "PI965_SECTION_IB"; readonly Pi965SectionIi: "PI965_SECTION_II"; readonly Pi966SectionI: "PI966_SECTION_I"; readonly Pi966SectionIi: "PI966_SECTION_II"; readonly Pi967SectionI: "PI967_SECTION_I"; readonly Pi967SectionIi: "PI967_SECTION_II"; readonly Pi968SectionIa: "PI968_SECTION_IA"; readonly Pi968SectionIb: "PI968_SECTION_IB"; readonly Pi969SectionI: "PI969_SECTION_I"; readonly Pi969SectionIi: "PI969_SECTION_II"; readonly Pi970SectionI: "PI970_SECTION_I"; readonly Pi970SectionIi: "PI970_SECTION_II"; }; export type DangerousGoodsDetailsPackingInstructionEnum = typeof DangerousGoodsDetailsPackingInstructionEnum[keyof typeof DangerousGoodsDetailsPackingInstructionEnum];