Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 856 Bytes

RangeCondition.md

File metadata and controls

28 lines (19 loc) · 856 Bytes

RangeCondition

Properties

Name Type Description Notes

Example

from trieve_py_client.models.range_condition import RangeCondition

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

# convert the object into a dict
range_condition_dict = range_condition_instance.to_dict()
# create an instance of RangeCondition from a dict
range_condition_form_dict = range_condition.from_dict(range_condition_dict)

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