| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Booking | Booking | BookingModule | BookingCom |
| (2) CarRentalBooking | CarRentalBooking | CarRentalLocationModule | BookingCom |
| (3) CarRentalLocation | CarRentalLocation | CarRentalLocationModule | BookingCom |
| (4) CarRentalProduct | CarRentalProduct | CarCategoryModule | BookingCom |
| (5) Currency | Currency | CurrencyModule | BookingCom |
| (6) LocationCity | LocationCity | LocationCityModule | BookingCom |
| (7) PartnerAccount | PartnerAccount | PartnerAccountModule | BookingCom |
| (8) RoomType | RoomType | RoomTypeModule | BookingCom |
| (9) RoomTypeCategory | RoomTypeCategory | CarRentalLocationModule | BookingCom |
| CarRentalBooking | CarRentalLocationModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Booking | INT | CarRentalBooking | Booking | BookingModule |
| (2) CarRentalProduct | INT | CarRentalBooking | CarRentalProduct | CarCategoryModule |
| (3) Currency | INT | CarRentalBooking | Currency | CurrencyModule |
| (4) DropoffDateTime | DATE | CarRentalBooking | ||
| (5) DropoffLocation | INT | CarRentalBooking | CarRentalLocation | CarRentalLocationModule |
| (6) PickupDateTime | DATE | CarRentalBooking | ||
| (7) PickupLocation | INT | CarRentalBooking | CarRentalLocation | CarRentalLocationModule |
| (8) TotalAmount | STRING | CarRentalBooking |
Example:
final CarRentalBooking carrentalbooking = (CarRentalBooking) invokeModule(CAR_RENTAL_LOCATION_MODULE + "/carrentalbooking/" + id, CarRentalBooking.class);| CarRentalLocation | CarRentalLocationModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) AddressLine1 | STRING | CarRentalLocation | ||
| (2) AddressLine2 | STRING | CarRentalLocation | ||
| (3) Latitude | STRING | CarRentalLocation | ||
| (4) LocationCity | INT | CarRentalLocation | LocationCity | LocationCityModule |
| (5) Longitude | STRING | CarRentalLocation | ||
| (6) Name | STRING | CarRentalLocation | ||
| (7) PartnerAccount | INT | CarRentalLocation | PartnerAccount | PartnerAccountModule |
| (8) PostalCode | STRING | CarRentalLocation |
Example:
final CarRentalLocation carrentallocation = (CarRentalLocation) invokeModule(CAR_RENTAL_LOCATION_MODULE + "/carrentallocation/" + id, CarRentalLocation.class);| RoomTypeCategory | CarRentalLocationModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | RoomTypeCategory | ||
| (2) Name | STRING | RoomTypeCategory |
Example:
final RoomTypeCategory roomtypecategory = (RoomTypeCategory) invokeModule(CAR_RENTAL_LOCATION_MODULE + "/roomtypecategory/" + id, RoomTypeCategory.class);| Contact | Donate | Imprint |