> ## 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.

# ReportThread

```ts theme={"theme":"github-dark-high-contrast"}
export interface ReportThread {
  report_type: string;
  item_id: string;
  item_type: ReportItemTypes;
  body: string;
  id: string;
  reporter: string;
  created: string;
  closed: boolean;
  thread_id: string;
}
```

## Properties

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

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

<ResponseField name="item_type" type="ReportItemTypes" required>Enum: [ReportItemTypes](/reference/enum/ReportItemTypes)</ResponseField>

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

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

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

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

<ResponseField name="closed" type="boolean" required />

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