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

UserFacingMessage

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

Provides a user-facing message with locale info. The maximum message length is 4096 characters.

interface UserFacingMessage {
defaultMessage?: string;
localizedMessages?: {
[key: string]: string;
}
;
}

§Properties

§
defaultMessage?: string
[src]

The default message displayed if no localized message is specified or the user's locale doesn't match with any of the localized messages. A default message must be provided if any localized messages are provided.

§
localizedMessages?: {
[key: string]: string;
}
[src]

A map containing pairs, where locale is a well-formed BCP 47 language (https://www.w3.org/International/articles/language-tags/) code, such as en-US, es-ES, or fr.