CommentUpdateRequest
| Name |
Type |
Description |
Notes |
| content |
str |
Updated comment text |
|
from revengai.models.comment_update_request import CommentUpdateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CommentUpdateRequest from a JSON string
comment_update_request_instance = CommentUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(CommentUpdateRequest.to_json())
# convert the object into a dict
comment_update_request_dict = comment_update_request_instance.to_dict()
# create an instance of CommentUpdateRequest from a dict
comment_update_request_from_dict = CommentUpdateRequest.from_dict(comment_update_request_dict)
[Back to Model list] [Back to API list] [Back to README]