// this file is @generated import { type BackgroundTaskStatus, BackgroundTaskStatusSerializer, } from "./backgroundTaskStatus"; import { type BackgroundTaskType, BackgroundTaskTypeSerializer, } from "./backgroundTaskType"; export interface ReplayOut { /** The QueueBackgroundTask's ID. */ id: string; status: BackgroundTaskStatus; task: BackgroundTaskType; updatedAt: Date; } export const ReplayOutSerializer = { _fromJsonObject(object: any): ReplayOut { return { id: object["id"], status: BackgroundTaskStatusSerializer._fromJsonObject(object["status"]), task: BackgroundTaskTypeSerializer._fromJsonObject(object["task"]), updatedAt: new Date(object["updatedAt"]), }; }, _toJsonObject(self: ReplayOut): any { return { id: self.id, status: BackgroundTaskStatusSerializer._toJsonObject(self.status), task: BackgroundTaskTypeSerializer._toJsonObject(self.task), updatedAt: self.updatedAt, }; }, };