Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

File metadata and controls

30 lines (21 loc) · 1.15 KB

ModerationUserSearchResponse

Properties

Name Type Description Notes
users List[ModerationUserSearchProjected]
status APIStatus

Example

from client.models.moderation_user_search_response import ModerationUserSearchResponse

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

# convert the object into a dict
moderation_user_search_response_dict = moderation_user_search_response_instance.to_dict()
# create an instance of ModerationUserSearchResponse from a dict
moderation_user_search_response_from_dict = ModerationUserSearchResponse.from_dict(moderation_user_search_response_dict)

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