Unified response type for refresh operations
| Name | Type | Description | Notes |
|---|---|---|---|
| connections_failed | int | ||
| connections_refreshed | int | ||
| errors | List[TableRefreshError] | ||
| tables_added | int | ||
| tables_discovered | int | ||
| tables_modified | int | ||
| connection_id | str | ||
| duration_ms | int | ||
| rows_synced | int | ||
| schema_name | str | ||
| table_name | str | ||
| warnings | List[RefreshWarning] | [optional] | |
| tables_failed | int | ||
| tables_refreshed | int | ||
| total_rows | int |
from hotdata.models.refresh_response import RefreshResponse
# TODO update the JSON string below
json = "{}"
# create an instance of RefreshResponse from a JSON string
refresh_response_instance = RefreshResponse.from_json(json)
# print the JSON string representation of the object
print(RefreshResponse.to_json())
# convert the object into a dict
refresh_response_dict = refresh_response_instance.to_dict()
# create an instance of RefreshResponse from a dict
refresh_response_from_dict = RefreshResponse.from_dict(refresh_response_dict)