No description
type StayBooking implements BookingItemInterface {
  startDateTime: Time!
  endDateTime: Time!
  address: String!
  city: String!
  countryCode: String!
  arrivalLocation: String!
  status: BookingStatus!
  activityType: ActivityType!
}

Fields

startDateTime
Time!
CheckIn time of a booking
endDateTime
Time!
CheckOut time of a booking
address
String!
The location of a trip
city
String!
The destination city
countryCode
String!
The country code of the destination
arrivalLocation
String!
The arrival location of a stay
status
BookingStatus!
Status of a stay
activityType
ActivityType!
Activity type of the returned data source

Interfaces

BookingItemInterface interface