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>[];
    };
}

Properties

Properties

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

Type declaration

  • durationMs: number
  • id: string
  • query: string
  • recordCount: number
  • records: Record<string, unknown>[]

Generated using TypeDoc