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

Application

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

Information about an app.

interface Application {
appPricing?:
| "APP_PRICING_UNSPECIFIED"
| "FREE"
| "FREE_WITH_IN_APP_PURCHASE"
| "PAID";
appTracks?: AppTrackInfo[];
appVersions?: AppVersion[];
author?: string;
availableCountries?: string[];
category?: string;
contentRating?:
| "CONTENT_RATING_UNSPECIFIED"
| "THREE_YEARS"
| "SEVEN_YEARS"
| "TWELVE_YEARS"
| "SIXTEEN_YEARS"
| "EIGHTEEN_YEARS";
description?: string;
distributionChannel?:
| "DISTRIBUTION_CHANNEL_UNSPECIFIED"
| "PUBLIC_GOOGLE_HOSTED"
| "PRIVATE_GOOGLE_HOSTED"
| "PRIVATE_SELF_HOSTED";
features?: "APP_FEATURE_UNSPECIFIED" | "VPN_APP"[];
fullDescription?: string;
iconUrl?: string;
managedProperties?: ManagedProperty[];
minAndroidSdkVersion?: number;
name?: string;
permissions?: ApplicationPermission[];
playStoreUrl?: string;
recentChanges?: string;
screenshotUrls?: string[];
smallIconUrl?: string;
title?: string;
readonly updateTime?: Date;
}

§Properties

§
appPricing?: "APP_PRICING_UNSPECIFIED" | "FREE" | "FREE_WITH_IN_APP_PURCHASE" | "PAID"
[src]

Whether this app is free, free with in-app purchases, or paid. If the pricing is unspecified, this means the app is not generally available anymore (even though it might still be available to people who own it).

§
appTracks?: AppTrackInfo[]
[src]

Application tracks visible to the enterprise.

§
appVersions?: AppVersion[]
[src]

Versions currently available for this app.

§
author?: string
[src]

The name of the author of the apps (for example, the app developer).

§
availableCountries?: string[]
[src]

The countries which this app is available in as per ISO 3166-1 alpha-2.

§
category?: string
[src]

The app category (e.g. RACING, SOCIAL, etc.)

§
contentRating?: "CONTENT_RATING_UNSPECIFIED" | "THREE_YEARS" | "SEVEN_YEARS" | "TWELVE_YEARS" | "SIXTEEN_YEARS" | "EIGHTEEN_YEARS"
[src]

The content rating for this app.

§
description?: string
[src]

The localized promotional description, if available.

§
distributionChannel?: "DISTRIBUTION_CHANNEL_UNSPECIFIED" | "PUBLIC_GOOGLE_HOSTED" | "PRIVATE_GOOGLE_HOSTED" | "PRIVATE_SELF_HOSTED"
[src]

How and to whom the package is made available.

§
features?: "APP_FEATURE_UNSPECIFIED" | "VPN_APP"[]
[src]

Noteworthy features (if any) of this app.

§
fullDescription?: string
[src]

Full app description, if available.

§
iconUrl?: string
[src]

A link to an image that can be used as an icon for the app. This image is suitable for use up to a pixel size of 512 x 512.

§
managedProperties?: ManagedProperty[]
[src]

The set of managed properties available to be pre-configured for the app.

§
minAndroidSdkVersion?: number
[src]

The minimum Android SDK necessary to run the app.

§
name?: string
[src]

The name of the app in the form enterprises/{enterprise}/applications/{package_name}.

§

The permissions required by the app.

§
playStoreUrl?: string
[src]

A link to the (consumer) Google Play details page for the app.

§
recentChanges?: string
[src]

A localised description of the recent changes made to the app.

§
screenshotUrls?: string[]
[src]

A list of screenshot links representing the app.

§
smallIconUrl?: string
[src]

A link to a smaller image that can be used as an icon for the app. This image is suitable for use up to a pixel size of 128 x 128.

§
title?: string
[src]

The title of the app. Localized.

§
readonly updateTime?: Date
[src]

Output only. The approximate time (within 7 days) the app was last published.