Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

UserUpdatesData

Properties

Name Type Description Notes
anime List[UserUpdatesDataAnimeInner] Last updated Anime [optional]
manga List[UserUpdatesDataMangaInner] Last updated Manga [optional]

Example

from jikan_openapi.models.user_updates_data import UserUpdatesData

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

# convert the object into a dict
user_updates_data_dict = user_updates_data_instance.to_dict()
# create an instance of UserUpdatesData from a dict
user_updates_data_form_dict = user_updates_data.from_dict(user_updates_data_dict)

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