SchemaMapping¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
loading_config |
[optional] |
||
vertex_mappings |
[optional] |
||
edge_mappings |
[optional] |
Example¶
from gs_interactive.models.schema_mapping import SchemaMapping
# TODO update the JSON string below
json = "{}"
# create an instance of SchemaMapping from a JSON string
schema_mapping_instance = SchemaMapping.from_json(json)
# print the JSON string representation of the object
print(SchemaMapping.to_json())
# convert the object into a dict
schema_mapping_dict = schema_mapping_instance.to_dict()
# create an instance of SchemaMapping from a dict
schema_mapping_from_dict = SchemaMapping.from_dict(schema_mapping_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]