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