Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 964 Bytes

File metadata and controls

31 lines (22 loc) · 964 Bytes

Schedules

Anime resources currently airing

Properties

Name Type Description Notes
pagination PaginationPlusPagination [optional]
data List[Anime] [optional]

Example

from jikan_openapi.models.schedules import Schedules

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

# convert the object into a dict
schedules_dict = schedules_instance.to_dict()
# create an instance of Schedules from a dict
schedules_form_dict = schedules.from_dict(schedules_dict)

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