| Name |
Type |
Description |
Notes |
| value |
int |
|
[optional] |
| name |
str |
|
[optional] |
| order |
int |
|
[optional] |
| hint |
str |
|
[optional] |
| divider_after |
bool |
|
[optional] |
from radarr.models.select_option import SelectOption
# TODO update the JSON string below
json = "{}"
# create an instance of SelectOption from a JSON string
select_option_instance = SelectOption.from_json(json)
# print the JSON string representation of the object
print(SelectOption.to_json())
# convert the object into a dict
select_option_dict = select_option_instance.to_dict()
# create an instance of SelectOption from a dict
select_option_from_dict = SelectOption.from_dict(select_option_dict)
[Back to Model list] [Back to API list] [Back to README]