| Contact | Donate | Imprint |
| RoomUnit | RoomTypeModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) IsActive | BOOL | RoomUnit | ||
| (2) RoomType | INT | RoomUnit | RoomType | RoomTypeModule |
| (3) UnitCode | STRING | RoomUnit |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /roomunit | findAllRoomUnit() | RoomTypeModule | GET | RoomUnit |
| (2) /roomunit/{id} | deleteRoomUnitById(id) | RoomTypeModule | DELETE | RoomUnit |
| (3) /roomunit/roomtype/{id} | findAllRoomUnitOfRoomType(id) | RoomTypeModule | GET | RoomType RoomUnit |
| (4) /roomunit | insertRoomUnit(roomunit) | RoomTypeModule | POST | RoomUnit |
| (5) /roomunit/{id} | findRoomUnitById(id) | RoomTypeModule | GET | RoomUnit |
| (6) /roomunit/{id} | updateRoomUnitById(roomunit) | RoomTypeModule | PUT | RoomUnit |
Example:
final RoomUnit roomunit = (RoomUnit) invokeModule(ROOM_TYPE_MODULE + "/roomunit/" + id, RoomUnit.class);| Contact | Donate | Imprint |