Favorite entries
| Name | Type | Description | Notes |
|---|---|---|---|
| anime | List[EntryMeta] | Favorite Anime | [optional] |
| manga | List[EntryMeta] | Favorite Manga | [optional] |
| characters | List[EntryMeta] | Favorite Characters | [optional] |
| people | List[EntryMeta] | Favorite People | [optional] |
from jikan_openapi.models.users_temp_data_inner_favorites import UsersTempDataInnerFavorites
# TODO update the JSON string below
json = "{}"
# create an instance of UsersTempDataInnerFavorites from a JSON string
users_temp_data_inner_favorites_instance = UsersTempDataInnerFavorites.from_json(json)
# print the JSON string representation of the object
print(UsersTempDataInnerFavorites.to_json())
# convert the object into a dict
users_temp_data_inner_favorites_dict = users_temp_data_inner_favorites_instance.to_dict()
# create an instance of UsersTempDataInnerFavorites from a dict
users_temp_data_inner_favorites_form_dict = users_temp_data_inner_favorites.from_dict(users_temp_data_inner_favorites_dict)