AI-generated Key Takeaways
- 
          Ticket items in orders for events like movies and sports include details such as the event, quantity, ticket information, fulfillment method, return policy, and ticket type. 
- 
          The ticketEventfield is required and specifies the event connected to the ticket.
- 
          The TicketReturnInfoobject provides details on whether tickets are returnable (isReturnable) and a link to the return policy (policyUrl).
Line item contents for ticket orders like movie, sports etc.
| JSON representation | |
|---|---|
| { "ticketEvent": { object ( | |
| Fields | |
|---|---|
| ticketEvent | 
 Required: The event connected to this ticket. | 
| quantity | 
 Number of tickets. | 
| tickets[] | 
 Ticket info. | 
| fulfillmentInfo | 
 Fulfillment method, e.g. delivery method, returnable etc. | 
| returnInfo | 
 The return information of the tickets. | 
| ticketType | 
 Ticket type for all tickets in this lineitem, e.g. regular, student. This is different from seat types because for example, there's usually no difference between student and non-student seats. | 
TicketReturnInfo
Information about how to return tickets.
| JSON representation | |
|---|---|
| { "isReturnable": boolean, "policyUrl": string } | |
| Fields | |
|---|---|
| isReturnable | 
 Whether tickets are returnable. | 
| policyUrl | 
 Link to the return policy. | 
