Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

ThreadMessageDetailsInput

Properties

Name Type Description Notes
steps List[StepInput] [optional]

Example

from ksapi.models.thread_message_details_input import ThreadMessageDetailsInput

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

# convert the object into a dict
thread_message_details_input_dict = thread_message_details_input_instance.to_dict()
# create an instance of ThreadMessageDetailsInput from a dict
thread_message_details_input_from_dict = ThreadMessageDetailsInput.from_dict(thread_message_details_input_dict)

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