Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

DeletedCommentResultComment

Properties

Name Type Description Notes
is_deleted bool [optional]
comment_html str
commenter_name str
user_id str [optional]

Example

from client.models.deleted_comment_result_comment import DeletedCommentResultComment

# TODO update the JSON string below
json = "{}"
# create an instance of DeletedCommentResultComment from a JSON string
deleted_comment_result_comment_instance = DeletedCommentResultComment.from_json(json)
# print the JSON string representation of the object
print(DeletedCommentResultComment.to_json())

# convert the object into a dict
deleted_comment_result_comment_dict = deleted_comment_result_comment_instance.to_dict()
# create an instance of DeletedCommentResultComment from a dict
deleted_comment_result_comment_from_dict = DeletedCommentResultComment.from_dict(deleted_comment_result_comment_dict)

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