Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

ModerationSuggestResponse

Properties

Name Type Description Notes
status str
pages List[ModerationPageSearchProjected] [optional]
users List[ModerationUserSearchProjected] [optional]
code str [optional]

Example

from client.models.moderation_suggest_response import ModerationSuggestResponse

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

# convert the object into a dict
moderation_suggest_response_dict = moderation_suggest_response_instance.to_dict()
# create an instance of ModerationSuggestResponse from a dict
moderation_suggest_response_from_dict = ModerationSuggestResponse.from_dict(moderation_suggest_response_dict)

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