stoatbot.js
    Preparing search index...

    Interface WebhookCreateData

    Represents data for a webhook creation event.

    interface WebhookCreateData {
        channelId: string;
        creatorId: string;
        name: string;
        token: string;
        webhookId: string;
    }
    Index

    Properties

    channelId: string

    The ID of the channel the webhook belongs to.

    creatorId: string

    The ID of the user who created the webhook.

    name: string

    The name of the webhook.

    token: string

    The webhook's token.

    webhookId: string

    The unique identifier of the webhook.