class Google::Apis::AndroidenterpriseV1::Product
A product represents an app in the Google Play Store that is available to at least some users in the enterprise. (Some apps are restricted to a single enterprise, and no information about them is made available outside that enterprise.) The information provided for each product (localized name, icon, link to the full Google Play details page) is intended to allow a basic representation of the product within an EMM user interface.
Attributes
App versions currently available for this product. The returned list contains only public versions. Alpha and beta versions are not included. Corresponds to the JSON property `appVersion` @return [Array<Google::Apis::AndroidenterpriseV1::AppVersion>]
A link to the (consumer) Google Play details page for the product. Corresponds to the JSON property `detailsUrl` @return [String]
How and to whom the package is made available. The value publicGoogleHosted means that the package is available through the Play Store and not restricted to a specific enterprise. The value privateGoogleHosted means that the package is a private app (restricted to an enterprise) but hosted by Google. The value privateSelfHosted means that the package is a private app (restricted to an enterprise) and is privately hosted. Corresponds to the JSON property `distributionChannel` @return [String]
A link to an image that can be used as an icon for the product. This image is suitable for use at up to 512px x 512px. Corresponds to the JSON property `iconUrl` @return [String]
Identifies what kind of resource this is. Value: the fixed string “ androidenterprise#product”. Corresponds to the JSON property `kind` @return [String]
A string of the form app:<package name>. For example, app:com.google.android. gm represents the Gmail app. Corresponds to the JSON property `productId` @return [String]
Whether this product is free, free with in-app purchases, or paid. Corresponds to the JSON property `productPricing` @return [String]
Whether this app can only be installed on devices using the Android for Work container app. Corresponds to the JSON property `requiresContainerApp` @return [Boolean]
Whether this app can only be installed on devices using the Android for Work container app. Corresponds to the JSON property `requiresContainerApp` @return [Boolean]
A link to a smaller image that can be used as an icon for the product. This image is suitable for use at up to 128px x 128px. Corresponds to the JSON property `smallIconUrl` @return [String]
The name of the product. Corresponds to the JSON property `title` @return [String]
A link to the Google Play for Work details page for the product, for use by an Enterprise administrator. Corresponds to the JSON property `workDetailsUrl` @return [String]
Public Class Methods
# File generated/google/apis/androidenterprise_v1/classes.rb, line 1012 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/androidenterprise_v1/classes.rb, line 1017 def update!(**args) @app_version = args[:app_version] if args.key?(:app_version) @author_name = args[:author_name] if args.key?(:author_name) @details_url = args[:details_url] if args.key?(:details_url) @distribution_channel = args[:distribution_channel] if args.key?(:distribution_channel) @icon_url = args[:icon_url] if args.key?(:icon_url) @kind = args[:kind] if args.key?(:kind) @product_id = args[:product_id] if args.key?(:product_id) @product_pricing = args[:product_pricing] if args.key?(:product_pricing) @requires_container_app = args[:requires_container_app] if args.key?(:requires_container_app) @small_icon_url = args[:small_icon_url] if args.key?(:small_icon_url) @title = args[:title] if args.key?(:title) @work_details_url = args[:work_details_url] if args.key?(:work_details_url) end