| Name | Type | Description | Notes |
|---|---|---|---|
| steps | List[StepOutput] | [optional] |
from ksapi.models.thread_message_details_output import ThreadMessageDetailsOutput
# TODO update the JSON string below
json = "{}"
# create an instance of ThreadMessageDetailsOutput from a JSON string
thread_message_details_output_instance = ThreadMessageDetailsOutput.from_json(json)
# print the JSON string representation of the object
print(ThreadMessageDetailsOutput.to_json())
# convert the object into a dict
thread_message_details_output_dict = thread_message_details_output_instance.to_dict()
# create an instance of ThreadMessageDetailsOutput from a dict
thread_message_details_output_from_dict = ThreadMessageDetailsOutput.from_dict(thread_message_details_output_dict)