Response body for GET /results/{id} Returns status and optionally the result data
| Name | Type | Description | Notes |
|---|---|---|---|
| columns | List[str] | [optional] | |
| error_message | object | [optional] | |
| nullable | List[bool] | [optional] | |
| result_id | str | ||
| row_count | object | [optional] | |
| rows | List[List[object]] | [optional] | |
| status | str |
from hotdata.models.get_result_response import GetResultResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetResultResponse from a JSON string
get_result_response_instance = GetResultResponse.from_json(json)
# print the JSON string representation of the object
print(GetResultResponse.to_json())
# convert the object into a dict
get_result_response_dict = get_result_response_instance.to_dict()
# create an instance of GetResultResponse from a dict
get_result_response_from_dict = GetResultResponse.from_dict(get_result_response_dict)