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

Callback

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

An instance of a Callback created by an execution.

interface Callback {
readonly availablePayloads?: string[];
readonly method?: string;
readonly name?: string;
readonly waiters?: bigint;
}

§Properties

§
readonly availablePayloads?: string[]
[src]

Output only. The payloads received by the callback that have not been processed by a waiting execution step.

§
readonly method?: string
[src]

Output only. The method accepted by the callback. For example: GET, POST, PUT.

§
readonly name?: string
[src]

Output only. The resource name of the callback. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}/callback/{callback}

§
readonly waiters?: bigint
[src]

Output only. Number of execution steps waiting on this callback.