@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
12 lines (11 loc) • 455 B
text/typescript
/** @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',
}