agentOS API Reference - v0.2.0-rc.3
    Preparing search index...

    Interface JsonRpcResponse

    A JSON-RPC response frame returned by the ACP adapter.

    interface JsonRpcResponse {
        error?: { code: number; data?: unknown; message: string };
        id: string | number;
        jsonrpc: "2.0";
        result?: unknown;
    }
    Index

    Properties

    error?: { code: number; data?: unknown; message: string }
    id: string | number
    jsonrpc: "2.0"
    result?: unknown