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

KeyedAppState

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

Keyed app state reported by the app.

interface KeyedAppState {
createTime?: Date;
data?: string;
key?: string;
lastUpdateTime?: Date;
message?: string;
severity?: "SEVERITY_UNSPECIFIED" | "INFO" | "ERROR";
}

§Properties

§
createTime?: Date
[src]

The creation time of the app state on the device.

§
data?: string
[src]

Optionally, a machine-readable value to be read by the EMM. For example, setting values that the admin can choose to query against in the EMM console (e.g. “notify me if the battery_warning data < 10”).

§
key?: string
[src]

The key for the app state. Acts as a point of reference for what the app is providing state for. For example, when providing managed configuration feedback, this key could be the managed configuration key.

§
lastUpdateTime?: Date
[src]

The time the app state was most recently updated.

§
message?: string
[src]

Optionally, a free-form message string to explain the app state. If the state was triggered by a particular value (e.g. a managed configuration value), it should be included in the message.

§
severity?: "SEVERITY_UNSPECIFIED" | "INFO" | "ERROR"
[src]

The severity of the app state.