Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1015 Bytes

File metadata and controls

32 lines (23 loc) · 1015 Bytes

PersonMeta

Properties

Name Type Description Notes
mal_id int MyAnimeList ID [optional]
url str MyAnimeList URL [optional]
images PeopleImages [optional]
name str Entry name [optional]

Example

from jikan_openapi.models.person_meta import PersonMeta

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

# convert the object into a dict
person_meta_dict = person_meta_instance.to_dict()
# create an instance of PersonMeta from a dict
person_meta_form_dict = person_meta.from_dict(person_meta_dict)

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