Anime News Resource
| Name | Type | Description | Notes |
|---|---|---|---|
| pagination | PaginationPagination | [optional] | |
| data | List[NewsDataInner] | [optional] |
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)