Files
FrenoCorp/node_modules/svix/dist/models/operationalWebhookEndpointUpdate.d.ts

16 lines
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;
};