| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Booking | Booking | BookingModule | BookingCom |
| (2) Currency | Currency | CurrencyModule | BookingCom |
| (3) Property | Property | PropertyModule | BookingCom |
| (4) RoomRatePlan | RoomRatePlan | StayBookingModule | BookingCom |
| (5) RoomRatePlanPrice | RoomRatePlanPrice | CurrencyModule | BookingCom |
| (6) RoomType | RoomType | RoomTypeModule | BookingCom |
| (7) StayBooking | StayBooking | StayBookingModule | BookingCom |
| (8) StayBookingPriceBreakdown | StayBookingPriceBreakdown | CurrencyModule | BookingCom |
| (9) StayGuest | StayGuest | StayBookingModule | BookingCom |
| RoomRatePlan | StayBookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | RoomRatePlan | ||
| (2) Description | STRING | RoomRatePlan | ||
| (3) FreeCancellationUntilDays | INT | RoomRatePlan | ||
| (4) IncludesBreakfast | BOOL | RoomRatePlan | ||
| (5) IsRefundable | BOOL | RoomRatePlan | ||
| (6) MaximumStayNights | INT | RoomRatePlan | ||
| (7) MinimumStayNights | INT | RoomRatePlan | ||
| (8) Name | STRING | RoomRatePlan | ||
| (9) RoomType | INT | RoomRatePlan | RoomType | RoomTypeModule |
Example:
final RoomRatePlan roomrateplan = (RoomRatePlan) invokeModule(STAY_BOOKING_MODULE + "/roomrateplan/" + id, RoomRatePlan.class);| StayBooking | StayBookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Adults | INT | StayBooking | ||
| (2) BaseAmount | STRING | StayBooking | ||
| (3) Booking | INT | StayBooking | Booking | BookingModule |
| (4) CancellationPolicySnapshot | STRING | StayBooking | ||
| (5) CheckInDate | DATE | StayBooking | ||
| (6) CheckOutDate | DATE | StayBooking | ||
| (7) Children | INT | StayBooking | ||
| (8) Currency | INT | StayBooking | Currency | CurrencyModule |
| (9) FeesAmount | STRING | StayBooking | ||
| (10) NumberOfRooms | INT | StayBooking | ||
| (11) Property | INT | StayBooking | Property | PropertyModule |
| (12) RoomRatePlan | INT | StayBooking | RoomRatePlan | StayBookingModule |
| (13) RoomType | INT | StayBooking | RoomType | RoomTypeModule |
| (14) SpecialRequests | STRING | StayBooking | ||
| (15) TaxesAmount | STRING | StayBooking |
Example:
final StayBooking staybooking = (StayBooking) invokeModule(STAY_BOOKING_MODULE + "/staybooking/" + id, StayBooking.class);| StayGuest | StayBookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Age | INT | StayGuest | ||
| (2) Email | STRING | StayGuest | ||
| (3) FullName | STRING | StayGuest | ||
| (4) IsPrimary | BOOL | StayGuest | ||
| (5) PhoneNumber | STRING | StayGuest | ||
| (6) StayBooking | INT | StayGuest | StayBooking | StayBookingModule |
Example:
final StayGuest stayguest = (StayGuest) invokeModule(STAY_BOOKING_MODULE + "/stayguest/" + id, StayGuest.class);| Contact | Donate | Imprint |