Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1011 Bytes

SelectOption.md

File metadata and controls

33 lines (24 loc) · 1011 Bytes

SelectOption

Properties

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

Example

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