Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 916 Bytes

File metadata and controls

28 lines (19 loc) · 916 Bytes

QueryPredicateValue

Properties

Name Type Description Notes

Example

from client.models.query_predicate_value import QueryPredicateValue

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

# convert the object into a dict
query_predicate_value_dict = query_predicate_value_instance.to_dict()
# create an instance of QueryPredicateValue from a dict
query_predicate_value_from_dict = QueryPredicateValue.from_dict(query_predicate_value_dict)

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