Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

DeleteCommentResult

Properties

Name Type Description Notes
action DeleteCommentAction
status APIStatus

Example

from client.models.delete_comment_result import DeleteCommentResult

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

# convert the object into a dict
delete_comment_result_dict = delete_comment_result_instance.to_dict()
# create an instance of DeleteCommentResult from a dict
delete_comment_result_from_dict = DeleteCommentResult.from_dict(delete_comment_result_dict)

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