Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

UsersSearch

User Results

Properties

Name Type Description Notes
pagination PaginationPagination [optional]
data List[UsersSearchAllOfData] [optional]

Example

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)

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