Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 997 Bytes

File metadata and controls

30 lines (21 loc) · 997 Bytes

UserMessageResponse

202 response from POST /{thread_id}/user_message.

Properties

Name Type Description Notes
workflow_id str

Example

from ksapi.models.user_message_response import UserMessageResponse

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

# convert the object into a dict
user_message_response_dict = user_message_response_instance.to_dict()
# create an instance of UserMessageResponse from a dict
user_message_response_from_dict = UserMessageResponse.from_dict(user_message_response_dict)

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