Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 968 Bytes

File metadata and controls

executable file
·
31 lines (22 loc) · 968 Bytes

SqlObjResponse

Properties

Name Type Description Notes
hits object
took float [optional]
timed_out bool [optional]

Example

from manticoresearch.models.sql_obj_response import SqlObjResponse

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

# convert the object into a dict
sql_obj_response_dict = sql_obj_response_instance.to_dict()
# create an instance of SqlObjResponse from a dict
sql_obj_response_from_dict = SqlObjResponse.from_dict(sql_obj_response_dict)

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