Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1 KB

File metadata and controls

35 lines (26 loc) · 1 KB

TableInfo

Single table metadata

Properties

Name Type Description Notes
columns List[ColumnInfo] [optional]
connection str
last_sync str [optional]
var_schema str
synced bool
table str

Example

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)

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