Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 986 Bytes

File metadata and controls

31 lines (22 loc) · 986 Bytes

MangaSearch

Manga Search Resource

Properties

Name Type Description Notes
pagination PaginationPlusPagination [optional]
data List[Manga] [optional]

Example

from jikan_openapi.models.manga_search import MangaSearch

# TODO update the JSON string below
json = "{}"
# create an instance of MangaSearch from a JSON string
manga_search_instance = MangaSearch.from_json(json)
# print the JSON string representation of the object
print(MangaSearch.to_json())

# convert the object into a dict
manga_search_dict = manga_search_instance.to_dict()
# create an instance of MangaSearch from a dict
manga_search_form_dict = manga_search.from_dict(manga_search_dict)

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