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

AppVersion

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

This represents a single version of the app.

interface AppVersion {
production?: boolean;
trackIds?: string[];
versionCode?: number;
versionString?: string;
}

§Properties

§
production?: boolean
[src]

If the value is True, it indicates that this version is a production track.

§
trackIds?: string[]
[src]

Track identifiers that the app version is published in. This does not include the production track (see production instead).

§
versionCode?: number
[src]

Unique increasing identifier for the app version.

§
versionString?: string
[src]

The string used in the Play store by the app developer to identify the version. The string is not necessarily unique or localized (for example, the string could be "1.4").