Class AppVersion
This represents a single version of the app.
Implements
Inherited Members
Namespace: Google.Apis.AndroidManagement.v1.Data
Assembly: Google.Apis.AndroidManagement.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 |
Production
If the value is True, it indicates that this version is a production track.
Declaration
[JsonProperty("production")]
public virtual bool? Production { get; set; }
Property Value
Type | Description |
---|---|
bool? |
TrackIds
Track identifiers that the app version is published in. This does not include the production track (see production instead).
Declaration
[JsonProperty("trackIds")]
public virtual IList<string> TrackIds { 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 |