@squidcloud/backend
    Preparing search index...

    Interface WebhookResponse

    An interface representing the response structure returned by a webhook function.

    interface WebhookResponse {
        __isWebhookResponse__: true;
        body: any;
        headers: Record<string, any>;
        statusCode: number;
    }
    Index

    Properties

    __isWebhookResponse__: true

    A flag indicating this is a webhook response object.

    body: any

    The body content of the webhook response.

    headers: Record<string, any>

    A record of HTTP headers to include in the webhook response.

    statusCode: number

    The HTTP status code for the webhook response.