Skip to content

Latest commit

 

History

History
69 lines (60 loc) · 3.22 KB

File metadata and controls

69 lines (60 loc) · 3.22 KB

AnimeFull

Full anime Resource

Properties

Name Type Description Notes
mal_id int MyAnimeList ID [optional]
url str MyAnimeList URL [optional]
images AnimeImages [optional]
trailer TrailerBase [optional]
approved bool Whether the entry is pending approval on MAL or not [optional]
titles List[Title] All titles [optional]
title str Title [optional]
title_english str English Title [optional]
title_japanese str Japanese Title [optional]
title_synonyms List[str] Other Titles [optional]
type str Anime Type [optional]
source str Original Material/Source adapted from [optional]
episodes int Episode count [optional]
status str Airing status [optional]
airing bool Airing boolean [optional]
aired Daterange [optional]
duration str Parsed raw duration [optional]
rating str Anime audience rating [optional]
score float Score [optional]
scored_by int Number of users [optional]
rank int Ranking [optional]
popularity int Popularity [optional]
members int Number of users who have added this entry to their list [optional]
favorites int Number of users who have favorited this entry [optional]
synopsis str Synopsis [optional]
background str Background [optional]
season str Season [optional]
year int Year [optional]
broadcast Broadcast [optional]
producers List[MalUrl] [optional]
licensors List[MalUrl] [optional]
studios List[MalUrl] [optional]
genres List[MalUrl] [optional]
explicit_genres List[MalUrl] [optional]
themes List[MalUrl] [optional]
demographics List[MalUrl] [optional]
relations List[AnimeFullRelationsInner] [optional]
theme AnimeFullTheme [optional]
external List[AnimeFullExternalInner] [optional]
streaming List[AnimeFullExternalInner] [optional]

Example

from jikan_openapi.models.anime_full import AnimeFull

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

# convert the object into a dict
anime_full_dict = anime_full_instance.to_dict()
# create an instance of AnimeFull from a dict
anime_full_form_dict = anime_full.from_dict(anime_full_dict)

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