Anime resources currently airing
| Name | Type | Description | Notes |
|---|---|---|---|
| pagination | PaginationPlusPagination | [optional] | |
| data | List[Anime] | [optional] |
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)