Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.55 KB

File metadata and controls

40 lines (31 loc) · 1.55 KB

CharacterFull

Character Resource

Properties

Name Type Description Notes
mal_id int MyAnimeList ID [optional]
url str MyAnimeList URL [optional]
images CharacterImages [optional]
name str Name [optional]
name_kanji str Name [optional]
nicknames List[str] Other Names [optional]
favorites int Number of users who have favorited this entry [optional]
about str Biography [optional]
anime List[CharacterAnimeDataInner] [optional]
manga List[CharacterFullMangaInner] [optional]
voices List[CharacterFullVoicesInner] [optional]

Example

from jikan_openapi.models.character_full import CharacterFull

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

# convert the object into a dict
character_full_dict = character_full_instance.to_dict()
# create an instance of CharacterFull from a dict
character_full_form_dict = character_full.from_dict(character_full_dict)

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