Name | Type | Description | Notes |
---|---|---|---|
image | str | [optional] | |
values | PointRelationshipsValues | [optional] | |
x | float | [optional] | |
y | float | [optional] | |
z | float | [optional] | |
entities | List[Entity] | [optional] |
from neurostore_sdk.models.point_relationships import PointRelationships
# TODO update the JSON string below
json = "{}"
# create an instance of PointRelationships from a JSON string
point_relationships_instance = PointRelationships.from_json(json)
# print the JSON string representation of the object
print PointRelationships.to_json()
# convert the object into a dict
point_relationships_dict = point_relationships_instance.to_dict()
# create an instance of PointRelationships from a dict
point_relationships_form_dict = point_relationships.from_dict(point_relationships_dict)