| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | Comment text content | |
| id | int | ||
| user_id | int | ||
| resource_type | str | ||
| resource_id | str | ||
| context | Context | [optional] | |
| created_at | datetime | ||
| updated_at | datetime |
fromrevengai.models.comment_responseimportCommentResponse# TODO update the JSON string belowjson="{}"# create an instance of CommentResponse from a JSON stringcomment_response_instance=CommentResponse.from_json(json)
# print the JSON string representation of the objectprint(CommentResponse.to_json())
# convert the object into a dictcomment_response_dict=comment_response_instance.to_dict()
# create an instance of CommentResponse from a dictcomment_response_from_dict=CommentResponse.from_dict(comment_response_dict)