svix
Version:
Svix webhooks API client and webhook verification library
21 lines (20 loc) • 494 B
TypeScript
export interface EndpointOut {
channels?: string[] | null;
createdAt: Date;
description: string;
disabled?: boolean;
filterTypes?: string[] | null;
id: string;
metadata: {
[key: string]: string;
};
rateLimit?: number | null;
uid?: string | null;
updatedAt: Date;
url: string;
version: number;
}
export declare const EndpointOutSerializer: {
_fromJsonObject(object: any): EndpointOut;
_toJsonObject(self: EndpointOut): any;
};