Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 966 Bytes

File metadata and controls

31 lines (22 loc) · 966 Bytes

AnimeNews

Anime News Resource

Properties

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

Example

from jikan_openapi.models.anime_news import AnimeNews

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

# convert the object into a dict
anime_news_dict = anime_news_instance.to_dict()
# create an instance of AnimeNews from a dict
anime_news_form_dict = anime_news.from_dict(anime_news_dict)

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