Show / Hide Table of Contents

Class WebApp

A WebApps resource represents a web app created for an enterprise. Web apps are published to managed Google Play and can be distributed like other Android apps. On a user's device, a web app opens its specified URL.

Inheritance
object
WebApp
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.AndroidEnterprise.v1.Data
Assembly: Google.Apis.AndroidEnterprise.v1.dll
Syntax
public class WebApp : IDirectResponseSchema

Properties

DisplayMode

The display mode of the web app. Possible values include: - "minimalUi", the device's status bar, navigation bar, the app's URL, and a refresh button are visible when the app is open. For HTTP URLs, you can only select this option. - "standalone", the device's status bar and navigation bar are visible when the app is open. - "fullScreen", the app opens in full screen mode, hiding the device's status and navigation bars. All browser UI elements, page URL, system status bar and back button are not visible, and the web app takes up the entirety of the available display area.

Declaration
[JsonProperty("displayMode")]
public virtual string DisplayMode { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Icons

A list of icons representing this website. If absent, a default icon (for create) or the current icon (for update) will be used.

Declaration
[JsonProperty("icons")]
public virtual IList<WebAppIcon> Icons { get; set; }
Property Value
Type Description
IList<WebAppIcon>

IsPublished

A flag whether the app has been published to the Play store yet.

Declaration
[JsonProperty("isPublished")]
public virtual bool? IsPublished { get; set; }
Property Value
Type Description
bool?

StartUrl

The start URL, i.e. the URL that should load when the user opens the application.

Declaration
[JsonProperty("startUrl")]
public virtual string StartUrl { get; set; }
Property Value
Type Description
string

Title

The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon).

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
string

VersionCode

The current version of the app. Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date.

Declaration
[JsonProperty("versionCode")]
public virtual long? VersionCode { get; set; }
Property Value
Type Description
long?

WebAppId

The ID of the application. A string of the form "app:&lt;package name&gt;" where the package name always starts with the prefix "com.google.enterprise.webapp." followed by a random id.

Declaration
[JsonProperty("webAppId")]
public virtual string WebAppId { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX