User Results
| Name | Type | Description | Notes |
|---|---|---|---|
| pagination | PaginationPagination | [optional] | |
| data | List[UsersSearchAllOfData] | [optional] |
from jikan_openapi.models.users_search import UsersSearch
# TODO update the JSON string below
json = "{}"
# create an instance of UsersSearch from a JSON string
users_search_instance = UsersSearch.from_json(json)
# print the JSON string representation of the object
print(UsersSearch.to_json())
# convert the object into a dict
users_search_dict = users_search_instance.to_dict()
# create an instance of UsersSearch from a dict
users_search_form_dict = users_search.from_dict(users_search_dict)