PullRequestCommentLikeCollection¶
- 
class oci.devops.models.PullRequestCommentLikeCollection(**kwargs)¶
- Bases: - object- Abstract of Pull Request Comment likes. - Methods - __init__(**kwargs)- Initializes a new PullRequestCommentLikeCollection object with values from keyword arguments. - Attributes - total_likes- [Required] Gets the total_likes of this PullRequestCommentLikeCollection. - users- [Required] Gets the users of this PullRequestCommentLikeCollection. - 
__init__(**kwargs)¶
- Initializes a new PullRequestCommentLikeCollection object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - users (list[oci.devops.models.PrincipalDetails]) – The value to assign to the users property of this PullRequestCommentLikeCollection.
- total_likes (int) – The value to assign to the total_likes property of this PullRequestCommentLikeCollection.
 
 - 
total_likes¶
- [Required] Gets the total_likes of this PullRequestCommentLikeCollection. Total like counter - Returns: - The total_likes of this PullRequestCommentLikeCollection. - Return type: - int 
 - 
users¶
- [Required] Gets the users of this PullRequestCommentLikeCollection. List of liked users of whom liked the pull request comment (max size is 50). - Returns: - The users of this PullRequestCommentLikeCollection. - Return type: - list[oci.devops.models.PrincipalDetails] 
 
-