Show / Hide Table of Contents

Class MobileDevice.ApplicationsData

Inheritance
System.Object
MobileDevice.ApplicationsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class ApplicationsData

Properties

DisplayName

The application's display name. An example is Browser.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
System.String

PackageName

The application's package name. An example is com.android.browser.

Declaration
[JsonProperty("packageName")]
public virtual string PackageName { get; set; }
Property Value
Type Description
System.String

Permission

The list of permissions of this application. These can be either a standard Android permission or one defined by the application, and are found in an application's Android manifest. Examples of a Calendar application's permissions are READ_CALENDAR, or MANAGE_ACCOUNTS.

Declaration
[JsonProperty("permission")]
public virtual IList<string> Permission { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

VersionCode

The application's version code. An example is 13.

Declaration
[JsonProperty("versionCode")]
public virtual int? VersionCode { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

VersionName

The application's version name. An example is 3.2-140714.

Declaration
[JsonProperty("versionName")]
public virtual string VersionName { get; set; }
Property Value
Type Description
System.String
Back to top