import { WeightUnit } from './weight-unit';

/** @description Represents the actual weight and unit supplied by a carrier based on the ingredients provided. */
export class CarrierWeight {
  /**  @description The actual weight value assessed by the carrier based on the ingredients provided, it may be used for customer billing purposes.  */
  value?: number;
  /** @description The unit of measurement for the carrier weight, it may be used for customer billing purposes. */
  unit!: WeightUnit;
}
