| Name | Type | Description | Notes |
|---|---|---|---|
| iso_3166_1 | str | [optional] | |
| link | str | [optional] | |
| buy | List[WatchProviderDetails] | [optional] | |
| flatrate | List[WatchProviderDetails] | [optional] |
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)