Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 996 Bytes

File metadata and controls

30 lines (21 loc) · 996 Bytes

SeasonsDataInner

Properties

Name Type Description Notes
year int Year [optional]
seasons List[str] List of available seasons [optional]

Example

from jikan_openapi.models.seasons_data_inner import SeasonsDataInner

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

# convert the object into a dict
seasons_data_inner_dict = seasons_data_inner_instance.to_dict()
# create an instance of SeasonsDataInner from a dict
seasons_data_inner_form_dict = seasons_data_inner.from_dict(seasons_data_inner_dict)

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