Interface ShippingTimeFilterOptionInternal

A requirement that a package arrive by a certain date

Tip

This maps to an input with a GraphQL @oneOf directive.

This means you have to specify exactly one of the keys:

interface ShippingTimeFilterOption {
    deliver_by?: DeliverByDate;
    deliver_in_days?: DeliverInDays;
    [field_name: string]: undefined | JsonValue;
}

Hierarchy (View Summary)

Indexable

Properties

deliver_by?: DeliverByDate

Expect the package to be delivered by a certain date

deliver_in_days?: DeliverInDays

Expect the package to arrive within a certain number of days