Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 751 Bytes

Values.md

File metadata and controls

28 lines (19 loc) · 751 Bytes

Values

Properties

Name Type Description Notes

Example

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)

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