/* * This code was auto generated by AfterShip SDK Generator. * Do not edit the class manually. */ import { EstimatedDeliveryDateRequestEstimatedPickupOrderProcessingTime } from "./EstimatedDeliveryDateRequestEstimatedPickupOrderProcessingTime"; /** * The local pickup time of the package.</br><span style=color:#ff6b2b;padding:2px>**Either `pickup_time` or `estimated_pickup` is required.**</span> */ export interface EstimatedDeliveryDateRequestEstimatedPickup { /** * The local order time in the origin address time zone of the package. */ order_time: string; /** * Order cut off time in the origin address time zone. The default value set by AfterShip is 18:00:00. */ order_cutoff_time?: string | null; /** * Operating days in a week. Number refers to the weekday.E.g., [1,2,3,4,5] means operating days are from Monday to Friday.AfterShip will set [1,2,3,4,5] as the default value. */ business_days?: number[] | null; /** * */ order_processing_time?: EstimatedDeliveryDateRequestEstimatedPickupOrderProcessingTime | null; }