Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.47 KB

File metadata and controls

44 lines (35 loc) · 1.47 KB

RefreshResponse

Unified response type for refresh operations

Properties

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

Example

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)

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