class Google::Apis::AndroidenterpriseV1::StorePage

Definition of a managed Google Play store page, made of a localized name and links to other pages. A page also contains clusters defined as a subcollection.

Attributes

id[RW]

Unique ID of this page. Assigned by the server. Immutable once assigned. Corresponds to the JSON property `id` @return [String]

name[RW]

Ordered list of localized strings giving the name of this page. The text displayed is the one that best matches the user locale, or the first entry if there is no good match. There needs to be at least one entry. Corresponds to the JSON property `name` @return [Array<Google::Apis::AndroidenterpriseV1::LocalizedText>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 2659
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 2664
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @link = args[:link] if args.key?(:link)
  @name = args[:name] if args.key?(:name)
end