/** @description This model represents the amount of the dangerous goods */
export declareclassDangerousAmountDetails{
/** @description The amount of dangerous goods */
amount?: number;
/** @description The unit of dangerous goods */
unit?: string;
}