| Contact | Donate | Imprint |
| CommentReport | UserModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) Comment | LONG | CommentReport | Comment | CommentModule |
| (2) CreatedAt | DATE | CommentReport | ||
| (3) Description | STRING | CommentReport | ||
| (4) ReasonCode | STRING | CommentReport | ||
| (5) ReporterUser | LONG | CommentReport | User | UserModule |
| (6) ResolvedAt | DATE | CommentReport | ||
| (7) ResolvedByUser | LONG | CommentReport | User | UserModule |
| (8) Status | STRING | CommentReport |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /commentreport/reporteruser/{id} | findAllCommentReportOfReporterUser(id) | UserModule | GET | User CommentReport |
| (2) /commentreport/resolvedbyuser/{id} | findAllCommentReportOfResolvedByUser(id) | UserModule | GET | User CommentReport |
| (3) /commentreport/{id} | updateCommentReportById(commentreport) | UserModule | PUT | CommentReport |
| (4) /commentreport/{id} | findCommentReportById(id) | UserModule | GET | CommentReport |
| (5) /commentreport/{id} | deleteCommentReportById(id) | UserModule | DELETE | CommentReport |
| (6) /commentreport | insertCommentReport(commentreport) | UserModule | POST | CommentReport |
| (7) /commentreport/comment/{id} | findAllCommentReportOfComment(id) | UserModule | GET | Comment CommentReport |
| (8) /commentreport | findAllCommentReport() | UserModule | GET | CommentReport |
Example:
final CommentReport commentreport = (CommentReport) invokeModule(USER_MODULE + "/commentreport/" + id, CommentReport.class);| Contact | Donate | Imprint |