interface Transport {
    bookmark?: string;
    by?: string;
    counts?: {
        [key: string]: JsonObject;
    };
    groups?: SearchResultProperties[];
    ranges?: {
        [key: string]: JsonObject;
    };
    rows: SearchResultRow[];
    total_rows: number;
}

Properties

bookmark?: string
by?: string
counts?: {
    [key: string]: JsonObject;
}
ranges?: {
    [key: string]: JsonObject;
}
total_rows: number