svix
Version:
Svix webhooks API client and webhook verification library
16 lines (15 loc) • 469 B
TypeScript
export interface OperationalWebhookEndpointUpdate {
description?: string;
disabled?: boolean;
filterTypes?: string[] | null;
metadata?: {
[key: string]: string;
};
rateLimit?: number | null;
uid?: string | null;
url: string;
}
export declare const OperationalWebhookEndpointUpdateSerializer: {
_fromJsonObject(object: any): OperationalWebhookEndpointUpdate;
_toJsonObject(self: OperationalWebhookEndpointUpdate): any;
};