VertexMapping¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
type_name |
str |
||
inputs |
List[str] |
||
column_mappings |
[optional] |
Example¶
from graphscope.flex.rest.models.vertex_mapping import VertexMapping
# TODO update the JSON string below
json = "{}"
# create an instance of VertexMapping from a JSON string
vertex_mapping_instance = VertexMapping.from_json(json)
# print the JSON string representation of the object
print(VertexMapping.to_json())
# convert the object into a dict
vertex_mapping_dict = vertex_mapping_instance.to_dict()
# create an instance of VertexMapping from a dict
vertex_mapping_from_dict = VertexMapping.from_dict(vertex_mapping_dict)