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