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 {
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

§
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.

§
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.