OBJECT
BigBoxDeliverySlot
link GraphQL Schema definition
- type BigBoxDeliverySlot {
- # Slot code (referencing BigBigDeliverySlotType)
- : String!
- # Date (ISO_LOCAL_DATE, YYYY-MM-DD)
- : String!
- # Reference to the slot code and date.
- # This is what you send to selectbigboxdelivery
- # (It is formed by concatenating the values for
- # code and date, separated with am @ sign.)
- : String!
- # Whether it's available, or else reserved
- : Boolean!
- # Whether this slot is currently selected for this order session
- : Boolean
- # A base price amount for this slot
- : Price
- # An extra-item price for this slot
- : Price
- # A price amount for this slot
- : Price
- }