Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 984 Bytes

File metadata and controls

30 lines (22 loc) · 984 Bytes

UpdateComment

The parameters for updating a comment.

Properties

Name Type Description Notes
version int The comment version.
comment str The comment text. [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]