Properties
| Name |
Type |
Description |
Notes |
| body |
str |
|
[optional] |
| resolved |
bool |
set the resolved state of the thread; only valid on top-level comments |
[optional] |
Example
from lakefs_enterprise_sdk.models.pull_request_comment_update import PullRequestCommentUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of PullRequestCommentUpdate from a JSON string
pull_request_comment_update_instance = PullRequestCommentUpdate.from_json(json)
# print the JSON string representation of the object
print PullRequestCommentUpdate.to_json()
# convert the object into a dict
pull_request_comment_update_dict = pull_request_comment_update_instance.to_dict()
# create an instance of PullRequestCommentUpdate from a dict
pull_request_comment_update_form_dict = pull_request_comment_update.from_dict(pull_request_comment_update_dict)