@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (7 loc) • 443 B
TypeScript
/** @description This model represents the date range when the customer expects the shipment to be delivered. ISO 8601 format */
export declare 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;
}