| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) CarCategory | CarCategory | CarCategoryModule | BookingCom |
| (2) CarRentalBooking | CarRentalBooking | CarRentalLocationModule | BookingCom |
| (3) CarRentalLocation | CarRentalLocation | CarRentalLocationModule | BookingCom |
| (4) CarRentalProduct | CarRentalProduct | CarCategoryModule | BookingCom |
| (5) RoomAvailability | RoomAvailability | CarCategoryModule | BookingCom |
| (6) RoomType | RoomType | RoomTypeModule | BookingCom |
| CarCategory | CarCategoryModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | CarCategory | ||
| (2) Description | STRING | CarCategory | ||
| (3) Name | STRING | CarCategory |
Example:
final CarCategory carcategory = (CarCategory) invokeModule(CAR_CATEGORY_MODULE + "/carcategory/" + id, CarCategory.class);| CarRentalProduct | CarCategoryModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) AirConditioning | BOOL | CarRentalProduct | ||
| (2) CarCategory | INT | CarRentalProduct | CarCategory | CarCategoryModule |
| (3) CarRentalLocation | INT | CarRentalProduct | CarRentalLocation | CarRentalLocationModule |
| (4) Description | STRING | CarRentalProduct | ||
| (5) Doors | INT | CarRentalProduct | ||
| (6) Name | STRING | CarRentalProduct | ||
| (7) Seats | INT | CarRentalProduct | ||
| (8) Transmission | STRING | CarRentalProduct |
Example:
final CarRentalProduct carrentalproduct = (CarRentalProduct) invokeModule(CAR_CATEGORY_MODULE + "/carrentalproduct/" + id, CarRentalProduct.class);| RoomAvailability | CarCategoryModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) ClosedForArrival | BOOL | RoomAvailability | ||
| (2) ClosedForDeparture | BOOL | RoomAvailability | ||
| (3) Date | DATE | RoomAvailability | ||
| (4) RoomType | INT | RoomAvailability | RoomType | RoomTypeModule |
| (5) SoldInventory | INT | RoomAvailability | ||
| (6) TotalInventory | INT | RoomAvailability |
Example:
final RoomAvailability roomavailability = (RoomAvailability) invokeModule(CAR_CATEGORY_MODULE + "/roomavailability/" + id, RoomAvailability.class);| Contact | Donate | Imprint |