SqlResponse

October 23, 2025 ยท View on GitHub

List of responses from executed SQL queries

Properties

NameTypeDescriptionNotes
hitsobject
tookfloat[optional]
timed_outbool[optional]

Example

from manticoresearch.models.sql_response import SqlResponse

# TODO update the JSON string below
json = "{}"
# create an instance of SqlResponse from a JSON string
sql_response_instance = SqlResponse.from_json(json)
# print the JSON string representation of the object
print(SqlResponse.to_json())

# convert the object into a dict
sql_response_dict = sql_response_instance.to_dict()
# create an instance of SqlResponse from a dict
sql_response_from_dict = SqlResponse.from_dict(sql_response_dict)

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