Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 844 Bytes

AskResponse.md

File metadata and controls

29 lines (20 loc) · 844 Bytes

AskResponse

Properties

Name Type Description Notes
response str

Example

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)

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