| Name | Type | Description | Notes |
|---|
from onelens_backend_client.models.value1 import Value1
# TODO update the JSON string below
json = "{}"
# create an instance of Value1 from a JSON string
value1_instance = Value1.from_json(json)
# print the JSON string representation of the object
print(Value1.to_json())
# convert the object into a dict
value1_dict = value1_instance.to_dict()
# create an instance of Value1 from a dict
value1_form_dict = value1.from_dict(value1_dict)