| Contact | Donate | Imprint |
| 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 |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /stayguest/{id} | findStayGuestById(id) | StayBookingModule | GET | StayGuest |
| (2) /stayguest/staybooking/{id} | findAllStayGuestOfStayBooking(id) | StayBookingModule | GET | StayBooking StayGuest |
| (3) /stayguest/{id} | deleteStayGuestById(id) | StayBookingModule | DELETE | StayGuest |
| (4) /stayguest | findAllStayGuest() | StayBookingModule | GET | StayGuest |
| (5) /stayguest/{id} | updateStayGuestById(stayguest) | StayBookingModule | PUT | StayGuest |
| (6) /stayguest | insertStayGuest(stayguest) | StayBookingModule | POST | StayGuest |
Example:
final StayGuest stayguest = (StayGuest) invokeModule(STAY_BOOKING_MODULE + "/stayguest/" + id, StayGuest.class);| Contact | Donate | Imprint |