Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

WatchPromos

Watch Promos

Properties

Name Type Description Notes
pagination PaginationPagination [optional]
data List[WatchPromosAllOfData] [optional]

Example

from jikan_openapi.models.watch_promos import WatchPromos

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

# convert the object into a dict
watch_promos_dict = watch_promos_instance.to_dict()
# create an instance of WatchPromos from a dict
watch_promos_form_dict = watch_promos.from_dict(watch_promos_dict)

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