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

StatusEvent

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

Status event

interface StatusEvent {
description?: string;
eventTime?: Date;
taskExecution?: TaskExecution;
taskState?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "ASSIGNED"
| "RUNNING"
| "FAILED"
| "SUCCEEDED"
| "UNEXECUTED";
type?: string;
}

§Properties

§
description?: string
[src]

Description of the event.

§
eventTime?: Date
[src]

The time this event occurred.

§
taskExecution?: TaskExecution
[src]

Task Execution

§
taskState?: "STATE_UNSPECIFIED" | "PENDING" | "ASSIGNED" | "RUNNING" | "FAILED" | "SUCCEEDED" | "UNEXECUTED"
[src]

Task State

§
type?: string
[src]

Type of the event.