Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 890 Bytes

File metadata and controls

30 lines (21 loc) · 890 Bytes

SelectOption

Properties

Name Type Description Notes
value str
label str

Example

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