Properties
| Name |
Type |
Description |
Notes |
| pagination |
Pagination |
|
|
| results |
List[PullRequestComment] |
|
|
Example
from lakefs_enterprise_sdk.models.pull_request_comment_list import PullRequestCommentList
# TODO update the JSON string below
json = "{}"
# create an instance of PullRequestCommentList from a JSON string
pull_request_comment_list_instance = PullRequestCommentList.from_json(json)
# print the JSON string representation of the object
print PullRequestCommentList.to_json()
# convert the object into a dict
pull_request_comment_list_dict = pull_request_comment_list_instance.to_dict()
# create an instance of PullRequestCommentList from a dict
pull_request_comment_list_form_dict = pull_request_comment_list.from_dict(pull_request_comment_list_dict)