| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Airport | Airport | AirportModule | BookingCom |
| (2) AirportTransferBooking | AirportTransferBooking | BookingModule | BookingCom |
| (3) AirportTransferProduct | AirportTransferProduct | AirportModule | BookingCom |
| (4) AirportTransferProvider | AirportTransferProvider | PartnerAccountModule | BookingCom |
| (5) Flight | Flight | AirportModule | BookingCom |
| (6) FlightBooking | FlightBooking | CurrencyModule | BookingCom |
| (7) FlightBookingSegment | FlightBookingSegment | AirportModule | BookingCom |
| (8) FlightCarrier | FlightCarrier | AirportModule | BookingCom |
| (9) LocationCity | LocationCity | LocationCityModule | BookingCom |
| Airport | AirportModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | Airport | ||
| (2) Latitude | STRING | Airport | ||
| (3) LocationCity | INT | Airport | LocationCity | LocationCityModule |
| (4) Longitude | STRING | Airport | ||
| (5) Name | STRING | Airport |
Example:
final Airport airport = (Airport) invokeModule(AIRPORT_MODULE + "/airport/" + id, Airport.class);| AirportTransferProduct | AirportModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) AirportTransferProvider | INT | AirportTransferProduct | AirportTransferProvider | PartnerAccountModule |
| (2) Description | STRING | AirportTransferProduct | ||
| (3) DestinationAirport | INT | AirportTransferProduct | Airport | AirportModule |
| (4) DestinationCity | INT | AirportTransferProduct | LocationCity | LocationCityModule |
| (5) MaxPassengers | INT | AirportTransferProduct | ||
| (6) Name | STRING | AirportTransferProduct | ||
| (7) OriginAirport | INT | AirportTransferProduct | Airport | AirportModule |
| (8) OriginCity | INT | AirportTransferProduct | LocationCity | LocationCityModule |
| (9) VehicleType | STRING | AirportTransferProduct |
Example:
final AirportTransferProduct airporttransferproduct = (AirportTransferProduct) invokeModule(AIRPORT_MODULE + "/airporttransferproduct/" + id, AirportTransferProduct.class);| Flight | AirportModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) ArrivalTime | DATE | Flight | ||
| (2) DepartureTime | DATE | Flight | ||
| (3) DestinationAirport | INT | Flight | Airport | AirportModule |
| (4) DurationMinutes | INT | Flight | ||
| (5) FlightCarrier | INT | Flight | FlightCarrier | AirportModule |
| (6) FlightNumber | STRING | Flight | ||
| (7) OriginAirport | INT | Flight | Airport | AirportModule |
Example:
final Flight flight = (Flight) invokeModule(AIRPORT_MODULE + "/flight/" + id, Flight.class);| FlightBookingSegment | AirportModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Flight | INT | FlightBookingSegment | Flight | AirportModule |
| (2) FlightBooking | INT | FlightBookingSegment | FlightBooking | CurrencyModule |
| (3) Seat | STRING | FlightBookingSegment | ||
| (4) SegmentNumber | INT | FlightBookingSegment | ||
| (5) Status | STRING | FlightBookingSegment |
Example:
final FlightBookingSegment flightbookingsegment = (FlightBookingSegment) invokeModule(AIRPORT_MODULE + "/flightbookingsegment/" + id, FlightBookingSegment.class);| FlightCarrier | AirportModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | FlightCarrier | ||
| (2) Name | STRING | FlightCarrier |
Example:
final FlightCarrier flightcarrier = (FlightCarrier) invokeModule(AIRPORT_MODULE + "/flightcarrier/" + id, FlightCarrier.class);| Contact | Donate | Imprint |