TicketFulfillmentInfo

  • TicketFulfillmentInfo provides information needed to receive tickets.

  • Key fields include fulfillmentType, expectedFulfillmentTime, location, price, and fulfillmentContact.

  • Each field has a corresponding JSON representation and data type, such as enum or object, with links to further details.

Information to receive tickets.

JSON representation
{
  "fulfillmentType": enum (Type),
  "expectedFulfillmentTime": {
    object (Time)
  },
  "location": {
    object (Location)
  },
  "price": {
    object (PriceAttribute)
  },
  "fulfillmentContact": {
    object (UserInfo)
  }
}
Fields
fulfillmentType

enum (Type)

Type of the fulfillment, e.g. delivery or pickup.

expectedFulfillmentTime

object (Time)

Expected delivery or pickup time. A window if a time-range is specified or ETA if single time specified.

location

object (Location)

Pickup or delivery location.

price

object (PriceAttribute)

Cost of this option.

fulfillmentContact

object (UserInfo)

User contact for this fulfillment.