/** @description Types of regulation level defined for dangerous good */
export enum RegulationLevelTypes {
  /** @description lightly regulated */
  LightlyRegulated = 'lightly_regulated',
  /** @description fully regualted */
  FullyRegulated = 'fully_regulated',
  /** @description limited quantities regulated */
  LimitedQuantities = 'limited_quantities',
  /** @description excepted quantity regulated */
  ExceptedQuantity = 'excepted_quantity',
}

/** @description Types of regulation level defined for dangerous good (V2) */
export enum RegulationLevelTypesV2 {
  /** @description lightly regulated */
  LightlyRegulated = 'lightly_regulated',
  /** @description fully regualted */
  FullyRegulated = 'fully_regulated',
  /** @description limited quantity regulated */
  LimitedQuantity = 'limited_quantity',
  /** @description excepted quantity regulated */
  ExceptedQuantity = 'excepted_quantity',
}
