svix
Version:
Svix webhooks API client and webhook verification library
18 lines (17 loc) • 430 B
TypeScript
export interface IngestEndpointOut {
createdAt: Date;
description: string;
disabled?: boolean;
id: string;
metadata: {
[key: string]: string;
};
rateLimit?: number | null;
uid?: string | null;
updatedAt: Date;
url: string;
}
export declare const IngestEndpointOutSerializer: {
_fromJsonObject(object: any): IngestEndpointOut;
_toJsonObject(self: IngestEndpointOut): any;
};