| Name |
Type |
Description |
Notes |
| iso_3166_1 |
str |
|
[optional] |
| english_name |
str |
|
[optional] |
| native_name |
str |
|
[optional] |
from seerr.models.watch_provider_region import WatchProviderRegion
# TODO update the JSON string below
json = "{}"
# create an instance of WatchProviderRegion from a JSON string
watch_provider_region_instance = WatchProviderRegion.from_json(json)
# print the JSON string representation of the object
print(WatchProviderRegion.to_json())
# convert the object into a dict
watch_provider_region_dict = watch_provider_region_instance.to_dict()
# create an instance of WatchProviderRegion from a dict
watch_provider_region_from_dict = WatchProviderRegion.from_dict(watch_provider_region_dict)
[Back to Model list] [Back to API list] [Back to README]