| Contact | Donate | Imprint |
| TaxCase | BookingModule | Airbnb |
| Property | Type | Entity | Reference | Module |
| (1) AmountAssessed | DOUBLE | TaxCase | ||
| (2) Company | LONG | TaxCase | Company | CompanyModule |
| (3) Currency | STRING | TaxCase | ||
| (4) Description | STRING | TaxCase | ||
| (5) EndDate | DATE | TaxCase | ||
| (6) Jurisdiction | LONG | TaxCase | Jurisdiction | JurisdictionModule |
| (7) StartDate | DATE | TaxCase | ||
| (8) Status | STRING | TaxCase |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /taxcase/{id} | updateTaxCaseById(taxcase) | BookingModule | PUT | TaxCase |
| (2) /taxcase/jurisdiction/{id} | findAllTaxCaseOfJurisdiction(id) | BookingModule | GET | Jurisdiction TaxCase |
| (3) /taxcase/{id} | findTaxCaseById(id) | BookingModule | GET | TaxCase |
| (4) /taxcase | findAllTaxCase() | BookingModule | GET | TaxCase |
| (5) /taxcase/{id} | deleteTaxCaseById(id) | BookingModule | DELETE | TaxCase |
| (6) /taxcase/company/{id} | findAllTaxCaseOfCompany(id) | BookingModule | GET | Company TaxCase |
| (7) /taxcase | insertTaxCase(taxcase) | BookingModule | POST | TaxCase |
Example:
final TaxCase taxcase = (TaxCase) invokeModule(BOOKING_MODULE + "/taxcase/" + id, TaxCase.class);| Contact | Donate | Imprint |