Skip to content

Latest commit

History

History
29 lines (20 loc) · 979 Bytes

File metadata and controls

29 lines (20 loc) · 979 Bytes

CommentUpdateRequest

Properties

NameTypeDescriptionNotes
contentstrUpdated comment text

Example

fromrevengai.models.comment_update_requestimportCommentUpdateRequest# TODO update the JSON string belowjson="{}"# create an instance of CommentUpdateRequest from a JSON stringcomment_update_request_instance=CommentUpdateRequest.from_json(json)
# print the JSON string representation of the objectprint(CommentUpdateRequest.to_json())
# convert the object into a dictcomment_update_request_dict=comment_update_request_instance.to_dict()
# create an instance of CommentUpdateRequest from a dictcomment_update_request_from_dict=CommentUpdateRequest.from_dict(comment_update_request_dict)

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