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

Alert

import type { Alert } from "https://googleapis.deno.dev/v1/adsense:v2.ts";

Representation of an alert.

interface Alert {
readonly message?: string;
readonly name?: string;
readonly severity?:
| "SEVERITY_UNSPECIFIED"
| "INFO"
| "WARNING"
| "SEVERE";
readonly type?: string;
}

§Properties

§
readonly message?: string
[src]

Output only. The localized alert message. This may contain HTML markup, such as phrase elements or links.

§
readonly name?: string
[src]

Output only. Resource name of the alert. Format: accounts/{account}/alerts/{alert}

§
readonly severity?: "SEVERITY_UNSPECIFIED" | "INFO" | "WARNING" | "SEVERE"
[src]

Output only. Severity of this alert.

§
readonly type?: string
[src]

Output only. Type of alert. This identifies the broad type of this alert, and provides a stable machine-readable identifier that will not be translated. For example, "payment-hold".