Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

SearchUsersResult

Properties

Name Type Description Notes
status APIStatus
sections List[UserSearchSectionResult] [optional]
users List[UserSearchResult] [optional]

Example

from client.models.search_users_result import SearchUsersResult

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

# convert the object into a dict
search_users_result_dict = search_users_result_instance.to_dict()
# create an instance of SearchUsersResult from a dict
search_users_result_from_dict = SearchUsersResult.from_dict(search_users_result_dict)

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