Class: Google::Apis::AndroidenterpriseV1::WebApp
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::WebApp
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidenterprise_v1/classes.rb,
lib/google/apis/androidenterprise_v1/representations.rb,
lib/google/apis/androidenterprise_v1/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#display_mode ⇒ String
The display mode of the web app.
-
#icons ⇒ Array<Google::Apis::AndroidenterpriseV1::WebAppIcon>
A list of icons representing this website.
-
#is_published ⇒ Boolean
(also: #is_published?)
A flag whether the app has been published to the Play store yet.
-
#start_url ⇒ String
The start URL, i.e.
-
#title ⇒ 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 ⇒ Fixnum
The current version of the app.
-
#web_app_id ⇒ String
The ID of the application.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WebApp
constructor
A new instance of WebApp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WebApp
Returns a new instance of WebApp.
3025 3026 3027 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 3025 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_mode ⇒ String
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.
Corresponds to the JSON property displayMode
2985 2986 2987 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2985 def display_mode @display_mode end |
#icons ⇒ Array<Google::Apis::AndroidenterpriseV1::WebAppIcon>
A list of icons representing this website. If absent, a default icon (for
create) or the current icon (for update) will be used.
Corresponds to the JSON property icons
2991 2992 2993 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2991 def icons @icons end |
#is_published ⇒ Boolean Also known as: is_published?
A flag whether the app has been published to the Play store yet.
Corresponds to the JSON property isPublished
2996 2997 2998 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2996 def is_published @is_published end |
#start_url ⇒ String
The start URL, i.e. the URL that should load when the user opens the
application.
Corresponds to the JSON property startUrl
3003 3004 3005 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 3003 def start_url @start_url end |
#title ⇒ 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).
Corresponds to the JSON property title
3009 3010 3011 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 3009 def title @title end |
#version_code ⇒ Fixnum
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.
Corresponds to the JSON property versionCode
3016 3017 3018 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 3016 def version_code @version_code end |
#web_app_id ⇒ String
The ID of the application. A string of the form "app:webAppId
3023 3024 3025 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 3023 def web_app_id @web_app_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3030 3031 3032 3033 3034 3035 3036 3037 3038 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 3030 def update!(**args) @display_mode = args[:display_mode] if args.key?(:display_mode) @icons = args[:icons] if args.key?(:icons) @is_published = args[:is_published] if args.key?(:is_published) @start_url = args[:start_url] if args.key?(:start_url) @title = args[:title] if args.key?(:title) @version_code = args[:version_code] if args.key?(:version_code) @web_app_id = args[:web_app_id] if args.key?(:web_app_id) end |