| Name |
Type |
Description |
Notes |
| mal_id |
int |
MyAnimeList ID |
[optional] |
| username |
str |
MyAnimeList Username |
[optional] |
| url |
str |
MyAnimeList URL |
[optional] |
| images |
UserImages |
|
[optional] |
| last_online |
str |
Last Online Date ISO8601 |
[optional] |
| gender |
str |
User Gender |
[optional] |
| birthday |
str |
Birthday Date ISO8601 |
[optional] |
| location |
str |
Location |
[optional] |
| joined |
str |
Joined Date ISO8601 |
[optional] |
from jikan_openapi.models.user_profile import UserProfile
# TODO update the JSON string below
json = "{}"
# create an instance of UserProfile from a JSON string
user_profile_instance = UserProfile.from_json(json)
# print the JSON string representation of the object
print(UserProfile.to_json())
# convert the object into a dict
user_profile_dict = user_profile_instance.to_dict()
# create an instance of UserProfile from a dict
user_profile_form_dict = user_profile.from_dict(user_profile_dict)
[Back to Model list] [Back to API list] [Back to README]