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

SystemUpdateInfo

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

Information about a potential pending system update.

interface SystemUpdateInfo {
updateReceivedTime?: Date;
updateStatus?:
| "UPDATE_STATUS_UNKNOWN"
| "UP_TO_DATE"
| "UNKNOWN_UPDATE_AVAILABLE"
| "SECURITY_UPDATE_AVAILABLE"
| "OS_UPDATE_AVAILABLE";
}

§Properties

§
updateReceivedTime?: Date
[src]

The time when the update was first available. A zero value indicates that this field is not set. This field is set only if an update is available (that is, updateStatus is neither UPDATE_STATUS_UNKNOWN nor UP_TO_DATE).

§
updateStatus?: "UPDATE_STATUS_UNKNOWN" | "UP_TO_DATE" | "UNKNOWN_UPDATE_AVAILABLE" | "SECURITY_UPDATE_AVAILABLE" | "OS_UPDATE_AVAILABLE"
[src]

The status of an update: whether an update exists and what type it is.