langchain.js
    Preparing search index...

    Interface representing the response from the SortXYZ API.

    interface SortXYZBlockchainAPIResponse {
        code: number;
        data: {
            durationMs: number;
            id: string;
            query: string;
            recordCount: number;
            records: Record<string, unknown>[];
        };
    }
    Index

    Properties

    Properties

    code: number
    data: {
        durationMs: number;
        id: string;
        query: string;
        recordCount: number;
        records: Record<string, unknown>[];
    }