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