Class: Google::Apis::AndroidenterpriseV1::StorePage
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::StorePage
- 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
-
#id ⇒ String
Unique ID of this page.
-
#link ⇒ Array<String>
Ordered list of pages a user should be able to reach from this page.
-
#name ⇒ Array<Google::Apis::AndroidenterpriseV1::LocalizedText>
Ordered list of localized strings giving the name of this page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StorePage
constructor
A new instance of StorePage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StorePage
Returns a new instance of StorePage.
2631 2632 2633 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2631 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Unique ID of this page. Assigned by the server. Immutable once assigned.
Corresponds to the JSON property id
2614 2615 2616 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2614 def id @id end |
#link ⇒ Array<String>
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
2622 2623 2624 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2622 def link @link end |
#name ⇒ Array<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
2629 2630 2631 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2629 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2636 2637 2638 2639 2640 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2636 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 |