Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

DynamicFilterFieldSchemaValue

The value for the filter

Properties

Name Type Description Notes

Example

from cloudbeds_pms.models.dynamic_filter_field_schema_value import DynamicFilterFieldSchemaValue

# TODO update the JSON string below
json = "{}"
# create an instance of DynamicFilterFieldSchemaValue from a JSON string
dynamic_filter_field_schema_value_instance = DynamicFilterFieldSchemaValue.from_json(json)
# print the JSON string representation of the object
print(DynamicFilterFieldSchemaValue.to_json())

# convert the object into a dict
dynamic_filter_field_schema_value_dict = dynamic_filter_field_schema_value_instance.to_dict()
# create an instance of DynamicFilterFieldSchemaValue from a dict
dynamic_filter_field_schema_value_from_dict = DynamicFilterFieldSchemaValue.from_dict(dynamic_filter_field_schema_value_dict)

[Back to Model list] [Back to API list] [Back to README]