UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

20 lines (19 loc) 928 B
/** @description Denotes the type of content for customs */ export declare enum CustomsContentTypes { /** @description This is generalized merchandise that someone has purchased */ Merchandise = "merchandise", /** @description Documents that are being shipped */ Documents = "documents", /** @description An item that is being shipped as a gift (not purchased) */ Gift = "gift", /** @description Sample goods that are being shipped */ Sample = "sample", /** @description Items that are being returned */ ReturnedGoods = "returned_goods", /** @description What other means in case of the shipment*/ Other = "other", /** @description Items purchased through an online (B2C) e-commerce transaction */ ECommerceGoods = "e_commerce_goods", /** @description Items sold from one business to another (B2B) */ CommercialSaleOfGoodsB2B = "commercial_sale_of_goods_b2b" }