Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 967 Bytes

File metadata and controls

32 lines (23 loc) · 967 Bytes

SqlResponse

List of responses from executed SQL queries

Properties

Name Type Description Notes
hits object
took float [optional]
timed_out bool [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]