Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1021 Bytes

File metadata and controls

32 lines (23 loc) · 1021 Bytes

TableRefreshError

Error details for a failed table refresh

Properties

Name Type Description Notes
error str
schema_name str
table_name str

Example

from hotdata.models.table_refresh_error import TableRefreshError

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

# convert the object into a dict
table_refresh_error_dict = table_refresh_error_instance.to_dict()
# create an instance of TableRefreshError from a dict
table_refresh_error_from_dict = TableRefreshError.from_dict(table_refresh_error_dict)

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