Class AppVersion
This represents a single version of the app.
Implements
Inherited Members
Namespace: Google.Apis.AndroidEnterprise.v1.Data
Assembly: Google.Apis.AndroidEnterprise.v1.dll
Syntax
public class AppVersion : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
IsProduction
True if this version is a production APK.
Declaration
[JsonProperty("isProduction")]
public virtual bool? IsProduction { get; set; }
Property Value
Type | Description |
---|---|
bool? |
TargetSdkVersion
The SDK version this app targets, as specified in the manifest of the APK. See http://developer.android.com/guide/topics/manifest/uses-sdk-element.html
Declaration
[JsonProperty("targetSdkVersion")]
public virtual int? TargetSdkVersion { get; set; }
Property Value
Type | Description |
---|---|
int? |
Track
Deprecated, use trackId instead.
Declaration
[JsonProperty("track")]
public virtual string Track { get; set; }
Property Value
Type | Description |
---|---|
string |
TrackId
Track ids that the app version is published in. Replaces the track field (deprecated), but doesn't include the production track (see isProduction instead).
Declaration
[JsonProperty("trackId")]
public virtual IList<string> TrackId { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
VersionCode
Unique increasing identifier for the app version.
Declaration
[JsonProperty("versionCode")]
public virtual int? VersionCode { get; set; }
Property Value
Type | Description |
---|---|
int? |
VersionString
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").
Declaration
[JsonProperty("versionString")]
public virtual string VersionString { get; set; }
Property Value
Type | Description |
---|---|
string |