The estimated shipping cost associated with the transportation option.

Quote

interface Quote {
    cost: Currency;
    expiration?: string;
    voidableUntil?: string;
}

Properties

cost: Currency

Quote

expiration?: string

The time at which this transportation option quote expires. In ISO 8601 datetime with pattern yyyy-MM-ddTHH:mm:ss.sssZ.

Quote

voidableUntil?: string

Voidable until timestamp.

Quote