Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.24 KB

File metadata and controls

36 lines (27 loc) · 1.24 KB

GetResultResponse

Response body for GET /results/{id} Returns status and optionally the result data

Properties

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

Example

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)

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