Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

WatchProvidersInner

Properties

Name Type Description Notes
iso_3166_1 str [optional]
link str [optional]
buy List[WatchProviderDetails] [optional]
flatrate List[WatchProviderDetails] [optional]

Example

from seerr.models.watch_providers_inner import WatchProvidersInner

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

# convert the object into a dict
watch_providers_inner_dict = watch_providers_inner_instance.to_dict()
# create an instance of WatchProvidersInner from a dict
watch_providers_inner_from_dict = WatchProvidersInner.from_dict(watch_providers_inner_dict)

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