| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AirportTransferBooking | AirportTransferBooking | BookingModule | BookingCom |
| (2) AirportTransferProduct | AirportTransferProduct | AirportModule | BookingCom |
| (3) AttractionBooking | AttractionBooking | AttractionBookingModule | BookingCom |
| (4) Booking | Booking | BookingModule | BookingCom |
| (5) BookingStatusHistory | BookingStatusHistory | BookingModule | BookingCom |
| (6) CarRentalBooking | CarRentalBooking | CarRentalLocationModule | BookingCom |
| (7) Currency | Currency | CurrencyModule | BookingCom |
| (8) FlightBooking | FlightBooking | CurrencyModule | BookingCom |
| (9) Payment | Payment | CurrencyModule | BookingCom |
| (10) Review | Review | LanguageModule | BookingCom |
| (11) StayBooking | StayBooking | StayBookingModule | BookingCom |
| (12) UserAccount | UserAccount | UserAccountModule | BookingCom |
| AirportTransferBooking | BookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) AirportTransferProduct | INT | AirportTransferBooking | AirportTransferProduct | AirportModule |
| (2) Booking | INT | AirportTransferBooking | Booking | BookingModule |
| (3) Currency | INT | AirportTransferBooking | Currency | CurrencyModule |
| (4) DropoffAddress | STRING | AirportTransferBooking | ||
| (5) Passengers | INT | AirportTransferBooking | ||
| (6) PickupAddress | STRING | AirportTransferBooking | ||
| (7) PickupDateTime | DATE | AirportTransferBooking | ||
| (8) TotalAmount | STRING | AirportTransferBooking |
Example:
final AirportTransferBooking airporttransferbooking = (AirportTransferBooking) invokeModule(BOOKING_MODULE + "/airporttransferbooking/" + id, AirportTransferBooking.class);| Booking | BookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Channel | STRING | Booking | ||
| (2) CreatedAt | DATE | Booking | ||
| (3) Currency | INT | Booking | Currency | CurrencyModule |
| (4) DisplayAmount | STRING | Booking | ||
| (5) Status | STRING | Booking | ||
| (6) TotalAmount | STRING | Booking | ||
| (7) UpdatedAt | DATE | Booking | ||
| (8) UserAccount | INT | Booking | UserAccount | UserAccountModule |
Example:
final Booking booking = (Booking) invokeModule(BOOKING_MODULE + "/booking/" + id, Booking.class);| BookingStatusHistory | BookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Booking | INT | BookingStatusHistory | Booking | BookingModule |
| (2) ChangedAt | DATE | BookingStatusHistory | ||
| (3) ChangedBySystem | BOOL | BookingStatusHistory | ||
| (4) Notes | STRING | BookingStatusHistory | ||
| (5) Status | STRING | BookingStatusHistory |
Example:
final BookingStatusHistory bookingstatushistory = (BookingStatusHistory) invokeModule(BOOKING_MODULE + "/bookingstatushistory/" + id, BookingStatusHistory.class);| Contact | Donate | Imprint |