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, "name" | "id">;
    source_guild: Pick<RawGuild, "name" | "id" | "icon">;
    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, "name" | "id">
source_guild: Pick<RawGuild, "name" | "id" | "icon">
user?: RawUser