Single table metadata
| Name | Type | Description | Notes |
|---|---|---|---|
| columns | List[ColumnInfo] | [optional] | |
| connection | str | ||
| last_sync | str | [optional] | |
| var_schema | str | ||
| synced | bool | ||
| table | str |
from hotdata.models.table_info import TableInfo
# TODO update the JSON string below
json = "{}"
# create an instance of TableInfo from a JSON string
table_info_instance = TableInfo.from_json(json)
# print the JSON string representation of the object
print(TableInfo.to_json())
# convert the object into a dict
table_info_dict = table_info_instance.to_dict()
# create an instance of TableInfo from a dict
table_info_from_dict = TableInfo.from_dict(table_info_dict)