Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 858 Bytes

QueryEndpoint.md

File metadata and controls

29 lines (20 loc) · 858 Bytes

QueryEndpoint

Properties

Name Type Description Notes
result str

Example

from iblai.models.query_endpoint import QueryEndpoint

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

# convert the object into a dict
query_endpoint_dict = query_endpoint_instance.to_dict()
# create an instance of QueryEndpoint from a dict
query_endpoint_from_dict = QueryEndpoint.from_dict(query_endpoint_dict)

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