| Name |
Type |
Description |
Notes |
| locale |
str |
|
[optional] |
| region |
str |
|
[optional] |
| original_language |
str |
|
[optional] |
from overseerr.models.user_settings import UserSettings
# TODO update the JSON string below
json = "{}"
# create an instance of UserSettings from a JSON string
user_settings_instance = UserSettings.from_json(json)
# print the JSON string representation of the object
print(UserSettings.to_json())
# convert the object into a dict
user_settings_dict = user_settings_instance.to_dict()
# create an instance of UserSettings from a dict
user_settings_from_dict = UserSettings.from_dict(user_settings_dict)
[Back to Model list] [Back to API list] [Back to README]