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

11 lines
328 B
TypeScript

export interface EndpointUpdatedEventData {
appId: string;
appUid?: string | null;
endpointId: string;
endpointUid?: string | null;
}
export declare const EndpointUpdatedEventDataSerializer: {
_fromJsonObject(object: any): EndpointUpdatedEventData;
_toJsonObject(self: EndpointUpdatedEventData): any;
};