Interface CostRecord

interface CostRecord {
    agentId: string;
    operationId: string;
    costUsd: number;
    timestamp: number;
    metadata?: Record<string, unknown>;
}

Properties

agentId: string
operationId: string
costUsd: number
timestamp: number
metadata?: Record<string, unknown>