from clientapi_cpanel.models.response_comment import ResponseComment
# TODO update the JSON string below
json = "{}"
# create an instance of ResponseComment from a JSON string
response_comment_instance = ResponseComment.from_json(json)
# print the JSON string representation of the object
print(ResponseComment.to_json())
# convert the object into a dict
response_comment_dict = response_comment_instance.to_dict()
# create an instance of ResponseComment from a dict
response_comment_from_dict = ResponseComment.from_dict(response_comment_dict)