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

StructuredMessage

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

A rich message format, including a human readable string, a key for identifying the message, and structured data associated with the message for programmatic consumption.

interface StructuredMessage {
messageKey?: string;
messageText?: string;
parameters?: Parameter[];
}

§Properties

§
messageKey?: string
[src]

Identifier for this message type. Used by external systems to internationalize or personalize message.

§
messageText?: string
[src]

Human-readable version of message.

§
parameters?: Parameter[]
[src]

The structured data associated with this message.