| Name | Type | Description | Notes |
|---|---|---|---|
| status | APIStatus | ||
| sections | List[UserSearchSectionResult] | [optional] | |
| users | List[UserSearchResult] | [optional] |
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)