Represents the response section of the search response.

interface SearchResponseResponse {
    docs?: SearchResponseDoc[];
    maxScore?: number;
    numFound?: number;
    start?: number;
}

Properties

maxScore?: number
numFound?: number
start?: number