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

DefaultApplicationSettingAttempt

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

Details on a default application setting attempt.

interface DefaultApplicationSettingAttempt {
readonly attemptOutcome?:
| "ATTEMPT_OUTCOME_UNSPECIFIED"
| "SUCCESS"
| "APP_NOT_INSTALLED"
| "APP_SIGNING_CERT_MISMATCH"
| "OTHER_FAILURE";
readonly packageName?: string;
}

§Properties

§
readonly attemptOutcome?: "ATTEMPT_OUTCOME_UNSPECIFIED" | "SUCCESS" | "APP_NOT_INSTALLED" | "APP_SIGNING_CERT_MISMATCH" | "OTHER_FAILURE"
[src]

Output only. The outcome of setting the app as the default.

§
readonly packageName?: string
[src]

Output only. The package name of the attempted application.