Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 965 Bytes

SelectOption.md

File metadata and controls

32 lines (23 loc) · 965 Bytes

SelectOption

Properties

Name Type Description Notes
value int [optional]
name str [optional]
order int [optional]
hint str [optional]

Example

from sonarr.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]