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

13 lines
445 B
TypeScript

import { type BackgroundTaskStatus } from "./backgroundTaskStatus";
import { type BackgroundTaskType } from "./backgroundTaskType";
export interface ExpungeAllContentsOut {
id: string;
status: BackgroundTaskStatus;
task: BackgroundTaskType;
updatedAt: Date;
}
export declare const ExpungeAllContentsOutSerializer: {
_fromJsonObject(object: any): ExpungeAllContentsOut;
_toJsonObject(self: ExpungeAllContentsOut): any;
};