Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 868 Bytes

File metadata and controls

30 lines (21 loc) · 868 Bytes

AskResponse

Response body for POST /v1/agent/ask.

Properties

Name Type Description Notes
text str

Example

from ksapi.models.ask_response import AskResponse

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

# convert the object into a dict
ask_response_dict = ask_response_instance.to_dict()
# create an instance of AskResponse from a dict
ask_response_from_dict = AskResponse.from_dict(ask_response_dict)

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