Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

DynamicFilterSchema

Represents a logical group of filters with keys like 'and' or 'or'

Properties

Name Type Description Notes
var_and List[DynamicFilterSchemaAndInner] Logical operator grouping filters or nested logical groups [optional]
var_or List[DynamicFilterSchemaAndInner] Logical operator grouping filters or nested logical groups [optional]

Example

from cloudbeds_pms.models.dynamic_filter_schema import DynamicFilterSchema

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

# convert the object into a dict
dynamic_filter_schema_dict = dynamic_filter_schema_instance.to_dict()
# create an instance of DynamicFilterSchema from a dict
dynamic_filter_schema_from_dict = DynamicFilterSchema.from_dict(dynamic_filter_schema_dict)

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