Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

ModerationAPIChildCommentsResponse

Properties

Name Type Description Notes
comments List[ModerationAPIComment]
status APIStatus

Example

from client.models.moderation_api_child_comments_response import ModerationAPIChildCommentsResponse

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

# convert the object into a dict
moderation_api_child_comments_response_dict = moderation_api_child_comments_response_instance.to_dict()
# create an instance of ModerationAPIChildCommentsResponse from a dict
moderation_api_child_comments_response_from_dict = ModerationAPIChildCommentsResponse.from_dict(moderation_api_child_comments_response_dict)

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