SchemaMappingLoadingConfigDataSource

Properties

Name

Type

Description

Notes

scheme

str

[optional]

location

str

[optional]

Example

from gs_interactive.models.schema_mapping_loading_config_data_source import SchemaMappingLoadingConfigDataSource

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

# convert the object into a dict
schema_mapping_loading_config_data_source_dict = schema_mapping_loading_config_data_source_instance.to_dict()
# create an instance of SchemaMappingLoadingConfigDataSource from a dict
schema_mapping_loading_config_data_source_from_dict = SchemaMappingLoadingConfigDataSource.from_dict(schema_mapping_loading_config_data_source_dict)

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