Represents the processed paginated response for command-response requests.

interface ESPCmdRespPaginatedResult {
    fetchNext?: () => Promise<ESPCmdRespPaginatedResult>;
    hasNext: boolean;
    requests: ESPCmdRespRequestInterface[];
}

Properties

fetchNext?: () => Promise<ESPCmdRespPaginatedResult>
hasNext: boolean