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

Type declaration

ranges?: {
    [key: string]: JsonObject;
}

Type declaration

total_rows: number