svix
Version:
Svix webhooks API client and webhook verification library
12 lines (11 loc) • 353 B
TypeScript
export interface StreamEventTypePatch {
archived?: boolean;
deprecated?: boolean;
description?: string | null;
featureFlags?: string[] | null;
name?: string | null;
}
export declare const StreamEventTypePatchSerializer: {
_fromJsonObject(object: any): StreamEventTypePatch;
_toJsonObject(self: StreamEventTypePatch): any;
};