No description

type BookingActivityMetadata implements ActivityMetadata {
  subject: [Identifier]
  price: String!
  bookingID: String!
  bookings: [BookingItemInterface]!
}

Fields

subject
[Identifier]
List of identifiers associated with the activity’s subject.

price
String!

The ticket or bill of a trip or stay

bookingID
String!

Reference identifying a booking

bookings
[BookingItemInterface]!
An array of bookings in a single purchase

Interfaces

ActivityMetadata interface