Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 877 Bytes

PointValue.md

File metadata and controls

31 lines (21 loc) · 877 Bytes

PointValue

Properties

Name Type Description Notes
kind str [optional]
value float [optional]

Example

from neurostore_sdk.models.point_value import PointValue

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

# convert the object into a dict
point_value_dict = point_value_instance.to_dict()
# create an instance of PointValue from a dict
point_value_from_dict = PointValue.from_dict(point_value_dict)

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