@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
23 lines (22 loc) • 957 B
TypeScript
/** @description Types of regulation level defined for dangerous good */
export declare 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 declare 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"
}