CreateThreadArgs
type CreateThreadArgs = {
channelId: string;
content: string;
groups?: string[] | null;
id?: string;
recipients?: number[] | null;
title?: string | null;
};
Type Declaration
| Name | Type |
|---|---|
channelId | string |
content | string |
groups? | string[] | null |
id? | string |
recipients? | number[] | null |
title? | string | null |