Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

UserFavorites

Properties

Name Type Description Notes
anime List[UserFavoritesAnimeInner] Favorite Anime [optional]
manga List[UserFavoritesMangaInner] Favorite Manga [optional]
characters List[UserFavoritesCharactersInner] Favorite Characters [optional]
people List[CharacterMeta] Favorite People [optional]

Example

from jikan_openapi.models.user_favorites import UserFavorites

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

# convert the object into a dict
user_favorites_dict = user_favorites_instance.to_dict()
# create an instance of UserFavorites from a dict
user_favorites_form_dict = user_favorites.from_dict(user_favorites_dict)

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