Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.22 KB

File metadata and controls

37 lines (28 loc) · 1.22 KB

Character

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]

Example

from jikan_openapi.models.character import Character

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

# convert the object into a dict
character_dict = character_instance.to_dict()
# create an instance of Character from a dict
character_form_dict = character.from_dict(character_dict)

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