| Contact | Donate | Imprint |
| LawsuitParty | ContentTypeModule | Netflix |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | LawsuitParty | Company | CompanyModule |
| (2) Lawsuit | LONG | LawsuitParty | Lawsuit | ContentTypeModule |
| (3) Role | STRING | LawsuitParty |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /lawsuitparty/{id} | updateLawsuitPartyById(lawsuitparty) | ContentTypeModule | PUT | LawsuitParty |
| (2) /lawsuitparty/company/{id} | findAllLawsuitPartyOfCompany(id) | ContentTypeModule | GET | Company LawsuitParty |
| (3) /lawsuitparty | insertLawsuitParty(lawsuitparty) | ContentTypeModule | POST | LawsuitParty |
| (4) /lawsuitparty | findAllLawsuitParty() | ContentTypeModule | GET | LawsuitParty |
| (5) /lawsuitparty/{id} | deleteLawsuitPartyById(id) | ContentTypeModule | DELETE | LawsuitParty |
| (6) /lawsuitparty/lawsuit/{id} | findAllLawsuitPartyOfLawsuit(id) | ContentTypeModule | GET | Lawsuit LawsuitParty |
| (7) /lawsuitparty/{id} | findLawsuitPartyById(id) | ContentTypeModule | GET | LawsuitParty |
Example:
final LawsuitParty lawsuitparty = (LawsuitParty) invokeModule(CONTENT_TYPE_MODULE + "/lawsuitparty/" + id, LawsuitParty.class);| Contact | Donate | Imprint |