Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListStepEntriesResponse

import type { ListStepEntriesResponse } from "https://googleapis.deno.dev/v1/workflowexecutions:v1.ts";

Response message for ExecutionHistory.ListStepEntries.

interface ListStepEntriesResponse {
nextPageToken?: string;
stepEntries?: StepEntry[];
totalSize?: number;
}

§Properties

§
nextPageToken?: string
[src]

A token to retrieve next page of results. Pass this value in the ListStepEntriesRequest.page_token field in the subsequent call to ListStepEntries method to retrieve the next page of results.

§
stepEntries?: StepEntry[]
[src]

The list of entries.

§
totalSize?: number
[src]

Indicates the total number of StepEntries that matched the request filter. For running executions, this number shows the number of StepEntries that are executed thus far.