Class: Google::Apis::AndroidenterpriseV1::StorePage

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ StorePage

Returns a new instance of StorePage



2615
2616
2617
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2615

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idString

Unique ID of this page. Assigned by the server. Immutable once assigned. Corresponds to the JSON property id

Returns:

  • (String)


2592
2593
2594
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2592

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " androidenterprise#storePage". Corresponds to the JSON property kind

Returns:

  • (String)


2598
2599
2600
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2598

def kind
  @kind
end

Ordered list of pages a user should be able to reach from this page. The list can't include this page. It is recommended that the basic pages are created first, before adding the links between pages. The API doesn't verify that the pages exist or the pages are reachable. Corresponds to the JSON property link

Returns:

  • (Array<String>)


2606
2607
2608
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2606

def link
  @link
end

#nameArray<Google::Apis::AndroidenterpriseV1::LocalizedText>

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



2613
2614
2615
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2613

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2620
2621
2622
2623
2624
2625
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2620

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @link = args[:link] if args.key?(:link)
  @name = args[:name] if args.key?(:name)
end