/** @description Denotes the type of content for customs  */
export 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',
}
