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

Name Type Description Notes
content str Updated comment text

Example

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]