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

Interfaces

BookingItemInterface interface