Interface JSONWebhook

interface JSONWebhook {
    channelID: string;
    createdAt: Date;
    deletedAt: null | Date;
    guildID: string;
    id: string;
    ownerID: string;
    token: null | string;
    username: string;
}

Hierarchy (view full)

Properties

channelID: string

ID of the channel, where the webhook comes from.

createdAt: Date

When the webhook was created.

deletedAt: null | Date

When the webhook was deleted.

guildID: string

ID of the guild, where the webhook comes from.

id: string
ownerID: string

ID of the webhook's owner.

token: null | string

Token of the webhook.

username: string

Username of the webhook.