Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 999 Bytes

File metadata and controls

31 lines (22 loc) · 999 Bytes

FieldFilter

Properties

Name Type Description Notes
operator ConditionalOperator
value object Can be any of supported OpenApi types. [optional]
var_field str

Example

from cloudbeds_accounting.models.field_filter import FieldFilter

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

# convert the object into a dict
field_filter_dict = field_filter_instance.to_dict()
# create an instance of FieldFilter from a dict
field_filter_from_dict = FieldFilter.from_dict(field_filter_dict)

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