Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 845 Bytes

File metadata and controls

30 lines (21 loc) · 845 Bytes

OrItem

Properties

Name Type Description Notes
gte List[object] [optional]
gt List[object] [optional]

Example

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)

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