| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AttractionBooking | AttractionBooking | AttractionBookingModule | BookingCom |
| (2) AttractionParticipant | AttractionParticipant | AttractionBookingModule | BookingCom |
| (3) AttractionSchedule | AttractionSchedule | PartnerAccountModule | BookingCom |
| (4) Booking | Booking | BookingModule | BookingCom |
| (5) Currency | Currency | CurrencyModule | BookingCom |
| (6) Property | Property | PropertyModule | BookingCom |
| (7) PropertyPhoto | PropertyPhoto | AttractionBookingModule | BookingCom |
| AttractionBooking | AttractionBookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Adults | INT | AttractionBooking | ||
| (2) AttractionSchedule | INT | AttractionBooking | AttractionSchedule | PartnerAccountModule |
| (3) Booking | INT | AttractionBooking | Booking | BookingModule |
| (4) Children | INT | AttractionBooking | ||
| (5) Currency | INT | AttractionBooking | Currency | CurrencyModule |
| (6) TotalAmount | STRING | AttractionBooking |
Example:
final AttractionBooking attractionbooking = (AttractionBooking) invokeModule(ATTRACTION_BOOKING_MODULE + "/attractionbooking/" + id, AttractionBooking.class);| AttractionParticipant | AttractionBookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Age | INT | AttractionParticipant | ||
| (2) AttractionBooking | INT | AttractionParticipant | AttractionBooking | AttractionBookingModule |
| (3) FullName | STRING | AttractionParticipant | ||
| (4) IsPrimary | BOOL | AttractionParticipant |
Example:
final AttractionParticipant attractionparticipant = (AttractionParticipant) invokeModule(ATTRACTION_BOOKING_MODULE + "/attractionparticipant/" + id, AttractionParticipant.class);| PropertyPhoto | AttractionBookingModule | BookingCom |
| Property | Type | Entity | Reference | Module |
| (1) Caption | STRING | PropertyPhoto | ||
| (2) IsMain | BOOL | PropertyPhoto | ||
| (3) Property | INT | PropertyPhoto | Property | PropertyModule |
| (4) SortOrder | INT | PropertyPhoto | ||
| (5) Url | STRING | PropertyPhoto |
Example:
final PropertyPhoto propertyphoto = (PropertyPhoto) invokeModule(ATTRACTION_BOOKING_MODULE + "/propertyphoto/" + id, PropertyPhoto.class);| Contact | Donate | Imprint |