Request body for POST /refresh
| Name | Type | Description | Notes |
|---|---|---|---|
| connection_id | object | [optional] | |
| data | bool | [optional] | |
| include_uncached | bool | Controls whether uncached tables are included in connection-wide data refresh. - `false` (default): Only refresh tables that already have cached data. This is the common case for keeping existing data up-to-date. - `true`: Also sync tables that haven't been cached yet, essentially performing an initial sync for any new tables discovered since the connection was created. This field only applies to connection-wide data refresh (when `data=true` and `table_name` is not specified). It has no effect on single-table refresh or schema refresh operations. | [optional] |
| schema_name | object | [optional] | |
| table_name | object | [optional] |
from hotdata.models.refresh_request import RefreshRequest
# TODO update the JSON string below
json = "{}"
# create an instance of RefreshRequest from a JSON string
refresh_request_instance = RefreshRequest.from_json(json)
# print the JSON string representation of the object
print(RefreshRequest.to_json())
# convert the object into a dict
refresh_request_dict = refresh_request_instance.to_dict()
# create an instance of RefreshRequest from a dict
refresh_request_from_dict = RefreshRequest.from_dict(refresh_request_dict)