> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lib.toolrinth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ThreadMessage

```ts theme={"theme":"github-dark-high-contrast"}
export interface ThreadMessage {
  id: string;
  author_id?: string | null;
  body: ThreadMessageBody;
  created: string;
}
```

## Properties

<ResponseField name="id" type="string" required />

<ResponseField name="author_id" type="string | null" />

<ResponseField name="body" type="ThreadMessageBody" required>Type: [ThreadMessageBody](/reference/type/ThreadMessageBody)</ResponseField>

<ResponseField name="created" type="string" required />
