Interface PartialInviteChannel

interface PartialInviteChannel {
    id: string;
    name: null | string;
    recipients?: Record<"username", string>[];
    type: GUILD_TEXT | GUILD_VOICE | GROUP_DM | GUILD_ANNOUNCEMENT | GUILD_STAGE_VOICE | GUILD_FORUM | GUILD_MEDIA;
}

Properties

Properties

id: string
name: null | string
recipients?: Record<"username", string>[]