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

AppProcessInfo

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

Information about a process. It contains process name, start time, app Uid, app Pid, seinfo tag, hash of the base APK.

interface AppProcessInfo {
apkSha256Hash?: string;
packageNames?: string[];
pid?: number;
processName?: string;
seinfo?: string;
startTime?: Date;
uid?: number;
}

§Properties

§
apkSha256Hash?: string
[src]

SHA-256 hash of the base APK, in hexadecimal format.

§
packageNames?: string[]
[src]

Package names of all packages that are associated with the particular user ID. In most cases, this will be a single package name, the package that has been assigned that user ID. If multiple application share a UID then all packages sharing UID will be included.

§
pid?: number
[src]

Process ID.

§
processName?: string
[src]

Process name.

§
seinfo?: string
[src]

SELinux policy info.

§
startTime?: Date
[src]

Process start time.

§
uid?: number
[src]

UID of the package.