Name | Type | Description | Notes |
---|---|---|---|
response | str |
from wordlift_client.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)