@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (7 loc) • 427 B
text/typescript
/** @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;
}