| Name | Type | Description | Notes |
|---|---|---|---|
| username | str | MyAnimeList Username | [optional] |
| url | str | MyAnimeList Profile URL | [optional] |
| images | UserImages | [optional] |
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)