interface UmbWebhookDetailModel {
    contentTypes: string[];
    enabled: boolean;
    entityType: "webhook";
    events: UmbWebhookEventModel[];
    headers: Record<string, string>;
    unique: string;
    url: string;
}

Properties

contentTypes: string[]
enabled: boolean
entityType: "webhook"
headers: Record<string, string>
unique: string
url: string
""