Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

ModerationAPICommentResponse

Properties

Name Type Description Notes
comment ModerationAPIComment
status APIStatus

Example

from client.models.moderation_api_comment_response import ModerationAPICommentResponse

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

# convert the object into a dict
moderation_api_comment_response_dict = moderation_api_comment_response_instance.to_dict()
# create an instance of ModerationAPICommentResponse from a dict
moderation_api_comment_response_from_dict = ModerationAPICommentResponse.from_dict(moderation_api_comment_response_dict)

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