Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 858 Bytes

File metadata and controls

30 lines (21 loc) · 858 Bytes

AndItem

Properties

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

Example

from onelens_backend_client.models.and_item import AndItem

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

# convert the object into a dict
and_item_dict = and_item_instance.to_dict()
# create an instance of AndItem from a dict
and_item_form_dict = and_item.from_dict(and_item_dict)

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