Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

ModerationAPICountCommentsResponse

Properties

Name Type Description Notes
status APIStatus
count float

Example

from client.models.moderation_api_count_comments_response import ModerationAPICountCommentsResponse

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

# convert the object into a dict
moderation_api_count_comments_response_dict = moderation_api_count_comments_response_instance.to_dict()
# create an instance of ModerationAPICountCommentsResponse from a dict
moderation_api_count_comments_response_from_dict = ModerationAPICountCommentsResponse.from_dict(moderation_api_count_comments_response_dict)

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