| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AirportTransferProduct | AirportTransferProduct | AirportModule | BookingCom |
| (2) AirportTransferProvider | AirportTransferProvider | PartnerAccountModule | BookingCom |
| (3) Attraction | Attraction | PartnerAccountModule | BookingCom |
| (4) AttractionBooking | AttractionBooking | AttractionBookingModule | BookingCom |
| (5) AttractionSchedule | AttractionSchedule | PartnerAccountModule | BookingCom |
| (6) CarRentalLocation | CarRentalLocation | CarRentalLocationModule | BookingCom |
| (7) LocationCity | LocationCity | LocationCityModule | BookingCom |
| (8) PartnerAccount | PartnerAccount | PartnerAccountModule | BookingCom |
| (9) Property | Property | PropertyModule | BookingCom |
| AirportTransferProvider | PartnerAccountModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) ContactEmail | STRING | AirportTransferProvider | ||
| (2) ContactPhone | STRING | AirportTransferProvider | ||
| (3) Name | STRING | AirportTransferProvider | ||
| (4) PartnerAccount | INT | AirportTransferProvider | PartnerAccount | PartnerAccountModule |
Example:
final AirportTransferProvider airporttransferprovider = (AirportTransferProvider) invokeModule(PARTNER_ACCOUNT_MODULE + "/airporttransferprovider/" + id, AirportTransferProvider.class);| Attraction | PartnerAccountModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) AddressLine1 | STRING | Attraction | ||
| (2) AddressLine2 | STRING | Attraction | ||
| (3) Description | STRING | Attraction | ||
| (4) Latitude | STRING | Attraction | ||
| (5) LocationCity | INT | Attraction | LocationCity | LocationCityModule |
| (6) Longitude | STRING | Attraction | ||
| (7) Name | STRING | Attraction | ||
| (8) PartnerAccount | INT | Attraction | PartnerAccount | PartnerAccountModule |
| (9) PostalCode | STRING | Attraction |
Example:
final Attraction attraction = (Attraction) invokeModule(PARTNER_ACCOUNT_MODULE + "/attraction/" + id, Attraction.class);| AttractionSchedule | PartnerAccountModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Attraction | INT | AttractionSchedule | Attraction | PartnerAccountModule |
| (2) Capacity | INT | AttractionSchedule | ||
| (3) EndDateTime | DATE | AttractionSchedule | ||
| (4) StartDateTime | DATE | AttractionSchedule |
Example:
final AttractionSchedule attractionschedule = (AttractionSchedule) invokeModule(PARTNER_ACCOUNT_MODULE + "/attractionschedule/" + id, AttractionSchedule.class);| PartnerAccount | PartnerAccountModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) CompanyName | STRING | PartnerAccount | ||
| (2) ContactName | STRING | PartnerAccount | ||
| (3) CreatedAt | DATE | PartnerAccount | ||
| (4) Email | STRING | PartnerAccount | ||
| (5) IsActive | BOOL | PartnerAccount | ||
| (6) PhoneNumber | STRING | PartnerAccount |
Example:
final PartnerAccount partneraccount = (PartnerAccount) invokeModule(PARTNER_ACCOUNT_MODULE + "/partneraccount/" + id, PartnerAccount.class);| Contact | Donate | Imprint |