Paginated list of command-response requests.

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

Properties

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