| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | Comment text content |
fromrevengai.models.comment_baseimportCommentBase# TODO update the JSON string belowjson="{}"# create an instance of CommentBase from a JSON stringcomment_base_instance=CommentBase.from_json(json)
# print the JSON string representation of the objectprint(CommentBase.to_json())
# convert the object into a dictcomment_base_dict=comment_base_instance.to_dict()
# create an instance of CommentBase from a dictcomment_base_from_dict=CommentBase.from_dict(comment_base_dict)