Request body for PUT /v1/queries/{id}
| Name | Type | Description | Notes |
|---|---|---|---|
| category_override | object | Override the auto-detected category. Send `null` to clear (revert to auto). | [optional] |
| description | object | [optional] | |
| name | object | Optional new name. When omitted the existing name is preserved. | [optional] |
| sql | object | Optional new SQL. When omitted the existing SQL is preserved. | [optional] |
| table_size_override | object | User annotation for table size. Send `null` to clear. | [optional] |
| tags | List[str] | [optional] |
from hotdata.models.update_saved_query_request import UpdateSavedQueryRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateSavedQueryRequest from a JSON string
update_saved_query_request_instance = UpdateSavedQueryRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateSavedQueryRequest.to_json())
# convert the object into a dict
update_saved_query_request_dict = update_saved_query_request_instance.to_dict()
# create an instance of UpdateSavedQueryRequest from a dict
update_saved_query_request_from_dict = UpdateSavedQueryRequest.from_dict(update_saved_query_request_dict)