/* * This code was auto generated by AfterShip SDK Generator. * Do not edit the class manually. */ /** * The field contains the estimated delivery date provided by the carrier. */ export interface TrackingCourierEstimatedDeliveryDate { /** * The estimated arrival date of the shipment. It reflects the shipment recipient’s timezone and the format may vary based on how the carrier provides it:- YYYY-MM-DD- YYYY-MM-DDTHH:mm:ss- YYYY-MM-DDTHH:mm:ssZ */ estimated_delivery_date?: string | null; /** * The earliest estimated delivery date of the shipment. It reflects the shipment recipient’s timezone and the format may vary based on how the carrier provides it:- YYYY-MM-DD- YYYY-MM-DDTHH:mm:ss- YYYY-MM-DDTHH:mm:ssZ */ estimated_delivery_date_min?: string | null; /** * The Latest estimated delivery date of the shipment. It reflects the shipment recipient’s timezone and the format may vary based on how the carrier provides it:- YYYY-MM-DD- YYYY-MM-DDTHH:mm:ss- YYYY-MM-DDTHH:mm:ssZ */ estimated_delivery_date_max?: string | null; }