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

JobMessage

import type { JobMessage } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

A particular message pertaining to a Dataflow job.

interface JobMessage {
id?: string;
messageImportance?:
| "JOB_MESSAGE_IMPORTANCE_UNKNOWN"
| "JOB_MESSAGE_DEBUG"
| "JOB_MESSAGE_DETAILED"
| "JOB_MESSAGE_BASIC"
| "JOB_MESSAGE_WARNING"
| "JOB_MESSAGE_ERROR";
messageText?: string;
time?: Date;
}

§Properties

§
id?: string
[src]

Deprecated.

§
messageImportance?: "JOB_MESSAGE_IMPORTANCE_UNKNOWN" | "JOB_MESSAGE_DEBUG" | "JOB_MESSAGE_DETAILED" | "JOB_MESSAGE_BASIC" | "JOB_MESSAGE_WARNING" | "JOB_MESSAGE_ERROR"
[src]

Importance level of the message.

§
messageText?: string
[src]

The text of the message.

§
time?: Date
[src]

The timestamp of the message.