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

StepEntryMetadata

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

StepEntryMetadata contains metadata information about this step.

interface StepEntryMetadata {
expectedIteration?: bigint;
progressNumber?: bigint;
progressType?:
| "PROGRESS_TYPE_UNSPECIFIED"
| "PROGRESS_TYPE_FOR"
| "PROGRESS_TYPE_SWITCH"
| "PROGRESS_TYPE_RETRY"
| "PROGRESS_TYPE_PARALLEL_FOR"
| "PROGRESS_TYPE_PARALLEL_BRANCH";
threadId?: string;
}

§Properties

§
expectedIteration?: bigint
[src]

Expected iteration represents the expected number of iterations in the step's progress.

§
progressNumber?: bigint
[src]

Progress number represents the current state of the current progress. eg: A step entry represents the 4th iteration in a progress of PROGRESS_TYPE_FOR. Note: This field is only populated when an iteration exists and the starting value is 1.

§
progressType?: "PROGRESS_TYPE_UNSPECIFIED" | "PROGRESS_TYPE_FOR" | "PROGRESS_TYPE_SWITCH" | "PROGRESS_TYPE_RETRY" | "PROGRESS_TYPE_PARALLEL_FOR" | "PROGRESS_TYPE_PARALLEL_BRANCH"
[src]

Progress type of this step entry.

§
threadId?: string
[src]

Child thread id that this step entry belongs to.