Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

ModerationAPIGetCommentsResponse

Properties

Name Type Description Notes
status APIStatus
translations object
comments List[ModerationAPIComment]
moderation_filter ModerationFilter [optional]

Example

from client.models.moderation_api_get_comments_response import ModerationAPIGetCommentsResponse

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

# convert the object into a dict
moderation_api_get_comments_response_dict = moderation_api_get_comments_response_instance.to_dict()
# create an instance of ModerationAPIGetCommentsResponse from a dict
moderation_api_get_comments_response_from_dict = ModerationAPIGetCommentsResponse.from_dict(moderation_api_get_comments_response_dict)

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