CommitComment¶
-
class
github.CommitComment.
CommitComment
¶ This class represents CommitComments.
The reference can be found here https://docs.github.com/en/rest/reference/repos#comments
-
delete
() → None¶ - Calls
- Return type
None
-
edit
(body: str) → None¶
-
get_reactions
() → PaginatedList[Reaction]¶
-
create_reaction
(reaction_type: str) → Reaction¶
-
delete_reaction
(reaction_id: int) → bool¶ - Calls
DELETE /repos/{owner}/{repo}/comments/{comment_id}/reactions/{reaction_id}
- Parameters
reaction_id – integer
- Return type
bool
-