Interface RawGroupChannel

interface RawGroupChannel {
    application_id: string;
    icon: null | string;
    id: string;
    last_message_id: null | string;
    managed: boolean;
    name: string;
    nicks?: Record<"id" | "nick", string>[];
    nsfw: boolean;
    owner_id: string;
    recipients: RawUser[];
    type: GROUP_DM;
}

Hierarchy

  • Required<Pick<RawChannel, "id" | "recipients" | "application_id" | "icon" | "owner_id" | "nsfw" | "last_message_id">>
    • RawGroupChannel

Properties

application_id: string
icon: null | string
id: string
last_message_id: null | string
managed: boolean
name: string
nicks?: Record<"id" | "nick", string>[]
nsfw: boolean
owner_id: string
recipients: RawUser[]
type: GROUP_DM