pub struct WebApp {
pub display_mode: Option<String>,
pub icons: Option<Vec<WebAppIcon>>,
pub name: Option<String>,
pub start_url: Option<String>,
pub title: Option<String>,
pub version_code: Option<i64>,
}Expand description
A web app.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- web apps create enterprises (request|response)
- web apps get enterprises (response)
- web apps patch enterprises (request|response)
Fields§
§display_mode: Option<String>The display mode of the web app.
icons: Option<Vec<WebAppIcon>>A list of icons for the web app. Must have at least one element.
name: Option<String>The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}.
start_url: Option<String>The start URL, i.e. the URL that should load when the user opens the application.
title: Option<String>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).
version_code: Option<i64>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.