A Storelayoutpages resource represents a single page of the enterprise's Google Play for Work store. Each page can have up to 30 store clusters (groups of related products), and the store can have up to 100 pages.
The display information provided for each page includes the page's localized name and links to other pages in the store, which are displayed as quick links at the top of the page. Each store must have one designated homepage, which you set using the Enterprises.setStoreLayout method of the Enterprises resource. The homepage should include links to all the other pages in the store.
The Store Layout Design guide has information on how to design a store layout, including how to create a store page.
For a list of methods for this resource, see the end of this page.
Resource representations
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.
{ "kind": "androidenterprise#storePage", "id": string, "name": [ { "locale": string, "text": string } ], "link": [ string ] }
Property name | Value | Description | Notes |
---|---|---|---|
id |
string |
Unique ID of this page. Assigned by the server. Immutable once assigned. | |
kind |
string |
||
link[] |
list |
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. |
|
name[] |
list |
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. | |
name[].locale |
string |
The BCP47 tag for a locale. (e.g. "en-US", "de"). | |
name[].text |
string |
The text localized in the associated locale. |