Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.21 KB

File metadata and controls

30 lines (22 loc) · 1.21 KB

ExportMessageRequestBody

Parameters for exporting an AI chat message to a document.

Properties

Name Type Description Notes
folder_id ExportChatRequestBodyFolderId
title str The file name (without extension) to use for the exported document.

Example

from docspace_api_sdk.models.export_message_request_body import ExportMessageRequestBody

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

# convert the object into a dict
export_message_request_body_dict = export_message_request_body_instance.to_dict()
# create an instance of ExportMessageRequestBody from a dict
export_message_request_body_from_dict = ExportMessageRequestBody.from_dict(export_message_request_body_dict)

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