| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | ||
| label | str |
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)