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

Step

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

Represents the status of one operation step.

interface Step {
description?: string;
status?:
| "STATUS_UNSPECIFIED"
| "DONE"
| "NOT_STARTED"
| "IN_PROGRESS"
| "FAILED"
| "CANCELLED";
}

§Properties

§
description?: string
[src]

The short description of the step.

§
status?: "STATUS_UNSPECIFIED" | "DONE" | "NOT_STARTED" | "IN_PROGRESS" | "FAILED" | "CANCELLED"
[src]

The status code.