Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

ModerationAPIGetCommentIdsResponse

Properties

Name Type Description Notes
ids List[str]
has_more bool
status APIStatus

Example

from client.models.moderation_api_get_comment_ids_response import ModerationAPIGetCommentIdsResponse

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

# convert the object into a dict
moderation_api_get_comment_ids_response_dict = moderation_api_get_comment_ids_response_instance.to_dict()
# create an instance of ModerationAPIGetCommentIdsResponse from a dict
moderation_api_get_comment_ids_response_from_dict = ModerationAPIGetCommentIdsResponse.from_dict(moderation_api_get_comment_ids_response_dict)

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