Interface ChannelFollowerWebhook

interface ChannelFollowerWebhook {
    application_id: null | string;
    avatar: null | string;
    channel_id: null | string;
    guild_id?: null | string;
    id: string;
    name: null | string;
    source_channel: Pick<RawChannel, "id" | "name">;
    source_guild: Pick<RawGuild, "id" | "icon" | "name">;
    type: WebhookTypes;
    user?: RawUser;
}

Hierarchy (view full)

Properties

application_id: null | string
avatar: null | string
channel_id: null | string
guild_id?: null | string
id: string
name: null | string
source_channel: Pick<RawChannel, "id" | "name">
source_guild: Pick<RawGuild, "id" | "icon" | "name">
user?: RawUser