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

PreCheckResponse

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

Structured PreCheckResponse containing message, type, and required actions.

interface PreCheckResponse {
actionsRequired?: string[];
message?: string;
messageType?:
| "MESSAGE_TYPE_UNSPECIFIED"
| "INFO"
| "WARNING"
| "ERROR";
}

§Properties

§
actionsRequired?: string[]
[src]

The actions that the user needs to take. Use repeated for multiple actions.

§
message?: string
[src]

The message to be displayed to the user.

§
messageType?: "MESSAGE_TYPE_UNSPECIFIED" | "INFO" | "WARNING" | "ERROR"
[src]

The type of message whether it is an info, warning, or error.