No description

type TripBooking implements BookingItemInterface {
  startDateTime: Time!
  endDateTime: Time!
  departureLocation: String!
  arrivalLocation: String!
  departureCountryCode: String!
  arrivalCountryCode: String!
  layoverLocations: [String]!
  status: BookingStatus!
  activityType: ActivityType!
}

Fields

startDateTime
Time!

Start time of a booking

endDateTime
Time!

End time of a booking

departureLocation
String!

The location where a booking flight takes off from

arrivalLocation
String!

The location of arrival of a booking flight

departureCountryCode
String!

The country code at departure

arrivalCountryCode
String!

The country code of the destination

layoverLocations
[String]!

A string listing the stops of a flight between its departure and arrival locations

Interfaces

BookingItemInterface interface