/** @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',
}
