ColumnMapping¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
column |
[optional] |
||
var_property |
str |
must align with the schema |
[optional] |
Example¶
from gs_interactive.models.column_mapping import ColumnMapping
# TODO update the JSON string below
json = "{}"
# create an instance of ColumnMapping from a JSON string
column_mapping_instance = ColumnMapping.from_json(json)
# print the JSON string representation of the object
print(ColumnMapping.to_json())
# convert the object into a dict
column_mapping_dict = column_mapping_instance.to_dict()
# create an instance of ColumnMapping from a dict
column_mapping_from_dict = ColumnMapping.from_dict(column_mapping_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]