FilterUsersResponse
Properties
| Name |
Type |
Description |
Notes |
| resources |
List[CreateUser201Response] |
List of users |
[optional] |
| items_per_page |
int |
|
[optional] |
| schemas |
List[str] |
|
[optional] |
| start_index |
int |
|
[optional] |
| total_results |
int |
|
[optional] |
Example
from odm_api.models.filter_users_response import FilterUsersResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FilterUsersResponse from a JSON string
filter_users_response_instance = FilterUsersResponse.from_json(json)
# print the JSON string representation of the object
print(FilterUsersResponse.to_json())
# convert the object into a dict
filter_users_response_dict = filter_users_response_instance.to_dict()
# create an instance of FilterUsersResponse from a dict
filter_users_response_from_dict = FilterUsersResponse.from_dict(filter_users_response_dict)
[Back to Model list] [Back to API list] [Back to README]