Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 955 Bytes

File metadata and controls

31 lines (22 loc) · 955 Bytes

UserMeta

Properties

Name Type Description Notes
username str MyAnimeList Username [optional]
url str MyAnimeList Profile URL [optional]
images UserImages [optional]

Example

from jikan_openapi.models.user_meta import UserMeta

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

# convert the object into a dict
user_meta_dict = user_meta_instance.to_dict()
# create an instance of UserMeta from a dict
user_meta_form_dict = user_meta.from_dict(user_meta_dict)

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