Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

AnimeUserupdates

Anime User Updates Resource

Properties

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

Example

from jikan_openapi.models.anime_userupdates import AnimeUserupdates

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

# convert the object into a dict
anime_userupdates_dict = anime_userupdates_instance.to_dict()
# create an instance of AnimeUserupdates from a dict
anime_userupdates_form_dict = anime_userupdates.from_dict(anime_userupdates_dict)

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