Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 966 Bytes

File metadata and controls

31 lines (22 loc) · 966 Bytes

QueryPredicate

Properties

Name Type Description Notes
key str
value QueryPredicateValue
operator str

Example

from client.models.query_predicate import QueryPredicate

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

# convert the object into a dict
query_predicate_dict = query_predicate_instance.to_dict()
# create an instance of QueryPredicate from a dict
query_predicate_from_dict = QueryPredicate.from_dict(query_predicate_dict)

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