CommentUpdateRequest
| Name | Type | Description | Notes |
|---|
| content | str | Updated comment text | |
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]