Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 811 Bytes

File metadata and controls

28 lines (20 loc) · 811 Bytes

KeyValue

Properties

Name Type Description Notes
value float [optional]

Example

from vcell_client.models.key_value import KeyValue

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

# convert the object into a dict
key_value_dict = key_value_instance.to_dict()
# create an instance of KeyValue from a dict
key_value_form_dict = key_value.from_dict(key_value_dict)

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