svix
Version:
Svix webhooks API client and webhook verification library
19 lines (18 loc) • 476 B
TypeScript
export interface EndpointPatch {
channels?: string[] | null;
description?: string;
disabled?: boolean;
filterTypes?: string[] | null;
metadata?: {
[key: string]: string;
};
rateLimit?: number | null;
secret?: string | null;
uid?: string | null;
url?: string;
version?: number;
}
export declare const EndpointPatchSerializer: {
_fromJsonObject(object: any): EndpointPatch;
_toJsonObject(self: EndpointPatch): any;
};