/** @description An object detailing the inner packaging of the dangerous good. */
export class DangerousGoodsInnerPackaging {
  /** @description The type of inner packaging used (e.g., "Glass Bottle", "Plastic Jar", "Metal Can"). */
  type?: string;
  /** @description The number of individual inner packagings contained within the outer package for this specific dangerous good. */
  quantity?: number;
}
