| Name | Type | Description | Notes |
|---|---|---|---|
| gte | List[object] | [optional] | |
| gt | List[object] | [optional] |
from onelens_backend_client.models.or_item import OrItem
# TODO update the JSON string below
json = "{}"
# create an instance of OrItem from a JSON string
or_item_instance = OrItem.from_json(json)
# print the JSON string representation of the object
print(OrItem.to_json())
# convert the object into a dict
or_item_dict = or_item_instance.to_dict()
# create an instance of OrItem from a dict
or_item_form_dict = or_item.from_dict(or_item_dict)