UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

29 lines (25 loc) 796 B
// this file is @generated /* eslint @typescript-eslint/no-explicit-any: 0 */ import { BackgroundTaskFinishedEvent2, BackgroundTaskFinishedEvent2Serializer, } from "./backgroundTaskFinishedEvent2"; /** Sent when a background task is finished. */ export interface BackgroundTaskFinishedEvent { data: BackgroundTaskFinishedEvent2; type: string; } export const BackgroundTaskFinishedEventSerializer = { _fromJsonObject(object: any): BackgroundTaskFinishedEvent { return { data: BackgroundTaskFinishedEvent2Serializer._fromJsonObject(object["data"]), type: object["type"], }; }, _toJsonObject(self: BackgroundTaskFinishedEvent): any { return { data: BackgroundTaskFinishedEvent2Serializer._toJsonObject(self.data), type: self.type, }; }, };