SchemaMapping

Properties

Name

Type

Description

Notes

loading_config

SchemaMappingLoadingConfig

[optional]

vertex_mappings

List[VertexMapping]

[optional]

edge_mappings

List[EdgeMapping]

[optional]

Example

from interactive_sdk.openapi.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 README]