Interface RawGroupChannel

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

Hierarchy

Properties

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