Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.26 KB

File metadata and controls

37 lines (28 loc) · 1.26 KB

ThreadResponse

Thread response model.

Properties

Name Type Description Notes
id UUID Thread ID
path_part_id UUID PathPart ID
title str Thread title
parent_thread_id UUID Parent Thread ID (for subthreads) [optional]
materialized_path str Full materialized path from root
tenant_id UUID Tenant ID
created_at datetime Creation timestamp
updated_at datetime Last update timestamp

Example

from ksapi.models.thread_response import ThreadResponse

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

# convert the object into a dict
thread_response_dict = thread_response_instance.to_dict()
# create an instance of ThreadResponse from a dict
thread_response_from_dict = ThreadResponse.from_dict(thread_response_dict)

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