VertexRequest

Properties

Name

Type

Description

Notes

label

str

primary_key_value

object

properties

PropertyArray

[optional]

Example

from interactive_sdk.openapi.models.vertex_request import VertexRequest

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

# convert the object into a dict
vertex_request_dict = vertex_request_instance.to_dict()
# create an instance of VertexRequest from a dict
vertex_request_from_dict = VertexRequest.from_dict(vertex_request_dict)

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