| Contact | Donate | Imprint |
| 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 |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /attraction/{id} | deleteAttractionById(id) | PartnerAccountModule | DELETE | Attraction |
| (2) /attraction/partneraccount/{id} | findAllAttractionOfPartnerAccount(id) | PartnerAccountModule | GET | PartnerAccount Attraction |
| (3) /attractionschedule/attraction/{id} | findAllAttractionScheduleOfAttraction(id) | PartnerAccountModule | GET | Attraction AttractionSchedule |
| (4) /attraction/{id} | updateAttractionById(attraction) | PartnerAccountModule | PUT | Attraction |
| (5) /attraction/locationcity/{id} | findAllAttractionOfLocationCity(id) | PartnerAccountModule | GET | LocationCity Attraction |
| (6) /attraction | insertAttraction(attraction) | PartnerAccountModule | POST | Attraction |
| (7) /attraction/{id} | findAttractionById(id) | PartnerAccountModule | GET | Attraction |
| (8) /attraction | findAllAttraction() | PartnerAccountModule | GET | Attraction |
Example:
final Attraction attraction = (Attraction) invokeModule(PARTNER_ACCOUNT_MODULE + "/attraction/" + id, Attraction.class);| Contact | Donate | Imprint |