Character Resource
| 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] |
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)