| Contact | Donate | Imprint |
| Comment | CommentModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Comment | ||
| (2) IsEdited | BOOL | Comment | ||
| (3) IsPinned | BOOL | Comment | ||
| (4) LikeCountCached | LONG | Comment | ||
| (5) ParentComment | LONG | Comment | ||
| (6) Status | STRING | Comment | ||
| (7) Text | STRING | Comment | ||
| (8) UpdatedAt | DATE | Comment | ||
| (9) User | LONG | Comment | User | UserModule |
| (10) Video | LONG | Comment | Video | VideoModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /commentlike/comment/{id} | findAllCommentLikeOfComment(id) | CommentModule | GET | Comment CommentLike |
| (2) /comment/{id} | deleteCommentById(id) | CommentModule | DELETE | Comment |
| (3) /comment/user/{id} | findAllCommentOfUser(id) | CommentModule | GET | User Comment |
| (4) /comment | insertComment(comment) | CommentModule | POST | Comment |
| (5) /comment/video/{id} | findAllCommentOfVideo(id) | CommentModule | GET | Video Comment |
| (6) /comment | findAllComment() | CommentModule | GET | Comment |
| (7) /comment/{id} | findCommentById(id) | CommentModule | GET | Comment |
| (8) /comment/{id} | updateCommentById(comment) | CommentModule | PUT | Comment |
| (9) /commentreport/comment/{id} | findAllCommentReportOfComment(id) | UserModule | GET | Comment CommentReport |
Example:
final Comment comment = (Comment) invokeModule(COMMENT_MODULE + "/comment/" + id, Comment.class);| Contact | Donate | Imprint |