Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

AnimeCharactersDataInner

Properties

Name Type Description Notes
character AnimeCharactersDataInnerCharacter [optional]
role str Character's Role [optional]
voice_actors List[AnimeCharactersDataInnerVoiceActorsInner] [optional]

Example

from jikan_openapi.models.anime_characters_data_inner import AnimeCharactersDataInner

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

# convert the object into a dict
anime_characters_data_inner_dict = anime_characters_data_inner_instance.to_dict()
# create an instance of AnimeCharactersDataInner from a dict
anime_characters_data_inner_form_dict = anime_characters_data_inner.from_dict(anime_characters_data_inner_dict)

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