/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as Flatfile from "../../../../api/index"; import * as core from "../../../../core"; import { AgentLogId } from "../../commons/types/AgentLogId"; import { AgentId } from "../../commons/types/AgentId"; import { EventId } from "../../commons/types/EventId"; export declare const AgentLog: core.serialization.ObjectSchema; export declare namespace AgentLog { interface Raw { id: AgentLogId.Raw; agentId: AgentId.Raw; eventId: EventId.Raw; success: boolean; createdAt: string; completedAt: string; log?: string | null; queueLag?: number | null; namespaces?: string[] | null; context?: Record | null; topic?: string | null; duration?: number | null; memoryUsage?: number | null; requestTime?: number | null; requestCount?: number | null; bytesReceived?: number | null; bytesSent?: number | null; } }