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

Message

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

Represents a notice or warning message from the database.

interface Message {
message?: string;
severity?: string;
}

§Properties

§
message?: string
[src]

The full message string. For PostgreSQL, this is a formatted string that may include severity, code, and the notice/warning message. For MySQL, this contains the warning message.

§
severity?: string
[src]

The severity of the message (e.g., "NOTICE" for PostgreSQL, "WARNING" for MySQL).