class Google::Apis::AndroidenterpriseV1::StoreLayout

General setting for the managed Google Play store layout, currently only specifying the page to display the first time the store is opened.

Attributes

homepage_id[RW]

The ID of the store page to be used as the homepage. The homepage is the first page shown in the managed Google Play Store. Not specifying a homepage is equivalent to setting the store layout type to “basic”. Corresponds to the JSON property `homepageId` @return [String]

store_layout_type[RW]

The store layout type. By default, this value is set to “basic” if the homepageId field is not set, and to “custom” otherwise. If set to “basic”, the layout will consist of all approved apps that have been whitelisted for the user. Corresponds to the JSON property `storeLayoutType` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 2585
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidenterprise_v1/classes.rb, line 2590
def update!(**args)
  @homepage_id = args[:homepage_id] if args.key?(:homepage_id)
  @store_layout_type = args[:store_layout_type] if args.key?(:store_layout_type)
end