Watch Promos
| Name | Type | Description | Notes |
|---|---|---|---|
| pagination | PaginationPagination | [optional] | |
| data | List[WatchPromosAllOfData] | [optional] |
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)