Interface HttpHeader

Type definitions for webhook-related data

This module contains type definitions for webhooks, including webhook configuration, events, and HTTP headers.

  • Defines the structure of webhook configurations and their properties
  • Includes types for webhook events and HTTP headers
  • Supports webhook security through signing secrets
  • Provides DTOs for creating, updating, and receiving webhook data
interface HttpHeader {
    name: string;
    value: string;
}

Properties

Properties

name: string
value: string