Properties
ThreadMessageBodyTypes
required
Enum: ThreadMessageBodyTypes
string | null
boolean | null
string | null
ProjectStatus | null
Enum: ProjectStatus
ProjectStatus | null
Enum: ProjectStatus
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
export interface ThreadMessageBody {
type: ThreadMessageBodyTypes;
body?: string | null;
private?: boolean | null;
replying_to?: string | null;
old_status?: ProjectStatus | null;
new_status?: ProjectStatus | null;
}
