Skip to content

Latest commit

History

History
29 lines (20 loc) · 856 Bytes

File metadata and controls

29 lines (20 loc) · 856 Bytes

CommentBase

Properties

NameTypeDescriptionNotes
contentstrComment text content

Example

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)

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