/** @description This model represents the date range when the customer expects the shipment to be delivered. ISO 8601 format */
export class CustomerExpectedDelivery {
  /** @description The beginning of the date range when the customer expects the shipment to be delivered. */
  from_date?: string;
  /** @description The end of the date range when the customer expects the shipment to be delivered. */
  to_date?: string;
}
