The parameters for updating a comment.
| Name | Type | Description | Notes |
|---|---|---|---|
| version | int | The comment version. | |
| comment | str | The comment text. | [optional] |
from docspace_api_sdk.models.update_comment import UpdateComment
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateComment from a JSON string
update_comment_instance = UpdateComment.from_json(json)
# print the JSON string representation of the object
print(UpdateComment.to_json())
# convert the object into a dict
update_comment_dict = update_comment_instance.to_dict()
# create an instance of UpdateComment from a dict
update_comment_from_dict = UpdateComment.from_dict(update_comment_dict)