Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.59 KB

File metadata and controls

33 lines (24 loc) · 1.59 KB

DynamicFilterSchemaAndInner

Properties

Name Type Description Notes
var_field str The field to apply the filter on [optional]
operator FilterOperatorEnumSchema [optional]
value DynamicFilterFieldSchemaValue [optional]
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_and_inner import DynamicFilterSchemaAndInner

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

# convert the object into a dict
dynamic_filter_schema_and_inner_dict = dynamic_filter_schema_and_inner_instance.to_dict()
# create an instance of DynamicFilterSchemaAndInner from a dict
dynamic_filter_schema_and_inner_from_dict = DynamicFilterSchemaAndInner.from_dict(dynamic_filter_schema_and_inner_dict)

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