Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

RecordQueryCondition

Properties

NameTypeDescriptionNotes
var_fieldstrField path such as `id` or `payload.record_scope`.
opstrComparison operator.
valueobjectOperand value. For `in` this must be an array. For `exists` this should be boolean.

Example

from ce_rise_hex_core_sdk.models.record_query_condition import RecordQueryCondition

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

# convert the object into a dict
record_query_condition_dict = record_query_condition_instance.to_dict()
# create an instance of RecordQueryCondition from a dict
record_query_condition_from_dict = RecordQueryCondition.from_dict(record_query_condition_dict)

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