1<html><body> 2<style> 3 4body, h1, h2, h3, div, span, p, pre, a { 5 margin: 0; 6 padding: 0; 7 border: 0; 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 13} 14 15body { 16 font-size: 13px; 17 padding: 1em; 18} 19 20h1 { 21 font-size: 26px; 22 margin-bottom: 1em; 23} 24 25h2 { 26 font-size: 24px; 27 margin-bottom: 1em; 28} 29 30h3 { 31 font-size: 20px; 32 margin-bottom: 1em; 33 margin-top: 1em; 34} 35 36pre, code { 37 line-height: 1.5; 38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; 39} 40 41pre { 42 margin-top: 0.5em; 43} 44 45h1, h2, h3, p { 46 font-family: Arial, sans serif; 47} 48 49h1, h2, h3 { 50 border-bottom: solid #CCC 1px; 51} 52 53.toc_element { 54 margin-top: 0.5em; 55} 56 57.firstline { 58 margin-left: 2 em; 59} 60 61.method { 62 margin-top: 1em; 63 border: solid 1px #CCC; 64 padding: 1em; 65 background: #EEE; 66} 67 68.details { 69 font-weight: bold; 70 font-size: 14px; 71} 72 73</style> 74 75<h1><a href="androidenterprise_v1.html">Google Play EMM API</a> . <a href="androidenterprise_v1.storelayoutpages.html">storelayoutpages</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#close">close()</a></code></p> 79<p class="firstline">Close httplib2 connections.</p> 80<p class="toc_element"> 81 <code><a href="#delete">delete(enterpriseId, pageId, x__xgafv=None)</a></code></p> 82<p class="firstline">Deletes a store page.</p> 83<p class="toc_element"> 84 <code><a href="#get">get(enterpriseId, pageId, x__xgafv=None)</a></code></p> 85<p class="firstline">Retrieves details of a store page.</p> 86<p class="toc_element"> 87 <code><a href="#insert">insert(enterpriseId, body=None, x__xgafv=None)</a></code></p> 88<p class="firstline">Inserts a new store page.</p> 89<p class="toc_element"> 90 <code><a href="#list">list(enterpriseId, x__xgafv=None)</a></code></p> 91<p class="firstline">Retrieves the details of all pages in the store.</p> 92<p class="toc_element"> 93 <code><a href="#update">update(enterpriseId, pageId, body=None, x__xgafv=None)</a></code></p> 94<p class="firstline">Updates the content of a store page.</p> 95<h3>Method Details</h3> 96<div class="method"> 97 <code class="details" id="close">close()</code> 98 <pre>Close httplib2 connections.</pre> 99</div> 100 101<div class="method"> 102 <code class="details" id="delete">delete(enterpriseId, pageId, x__xgafv=None)</code> 103 <pre>Deletes a store page. 104 105Args: 106 enterpriseId: string, The ID of the enterprise. (required) 107 pageId: string, The ID of the page. (required) 108 x__xgafv: string, V1 error format. 109 Allowed values 110 1 - v1 error format 111 2 - v2 error format 112</pre> 113</div> 114 115<div class="method"> 116 <code class="details" id="get">get(enterpriseId, pageId, x__xgafv=None)</code> 117 <pre>Retrieves details of a store page. 118 119Args: 120 enterpriseId: string, The ID of the enterprise. (required) 121 pageId: string, The ID of the page. (required) 122 x__xgafv: string, V1 error format. 123 Allowed values 124 1 - v1 error format 125 2 - v2 error format 126 127Returns: 128 An object of the form: 129 130 { # 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. 131 "id": "A String", # Unique ID of this page. Assigned by the server. Immutable once assigned. 132 "link": [ # 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. 133 "A String", 134 ], 135 "name": [ # 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. 136 { # A localized string with its locale. 137 "locale": "A String", # The BCP47 tag for a locale. (e.g. "en-US", "de"). 138 "text": "A String", # The text localized in the associated locale. 139 }, 140 ], 141}</pre> 142</div> 143 144<div class="method"> 145 <code class="details" id="insert">insert(enterpriseId, body=None, x__xgafv=None)</code> 146 <pre>Inserts a new store page. 147 148Args: 149 enterpriseId: string, The ID of the enterprise. (required) 150 body: object, The request body. 151 The object takes the form of: 152 153{ # 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. 154 "id": "A String", # Unique ID of this page. Assigned by the server. Immutable once assigned. 155 "link": [ # 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. 156 "A String", 157 ], 158 "name": [ # 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. 159 { # A localized string with its locale. 160 "locale": "A String", # The BCP47 tag for a locale. (e.g. "en-US", "de"). 161 "text": "A String", # The text localized in the associated locale. 162 }, 163 ], 164} 165 166 x__xgafv: string, V1 error format. 167 Allowed values 168 1 - v1 error format 169 2 - v2 error format 170 171Returns: 172 An object of the form: 173 174 { # 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. 175 "id": "A String", # Unique ID of this page. Assigned by the server. Immutable once assigned. 176 "link": [ # 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. 177 "A String", 178 ], 179 "name": [ # 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. 180 { # A localized string with its locale. 181 "locale": "A String", # The BCP47 tag for a locale. (e.g. "en-US", "de"). 182 "text": "A String", # The text localized in the associated locale. 183 }, 184 ], 185}</pre> 186</div> 187 188<div class="method"> 189 <code class="details" id="list">list(enterpriseId, x__xgafv=None)</code> 190 <pre>Retrieves the details of all pages in the store. 191 192Args: 193 enterpriseId: string, The ID of the enterprise. (required) 194 x__xgafv: string, V1 error format. 195 Allowed values 196 1 - v1 error format 197 2 - v2 error format 198 199Returns: 200 An object of the form: 201 202 { 203 "page": [ # A store page of an enterprise. 204 { # 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. 205 "id": "A String", # Unique ID of this page. Assigned by the server. Immutable once assigned. 206 "link": [ # 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. 207 "A String", 208 ], 209 "name": [ # 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. 210 { # A localized string with its locale. 211 "locale": "A String", # The BCP47 tag for a locale. (e.g. "en-US", "de"). 212 "text": "A String", # The text localized in the associated locale. 213 }, 214 ], 215 }, 216 ], 217}</pre> 218</div> 219 220<div class="method"> 221 <code class="details" id="update">update(enterpriseId, pageId, body=None, x__xgafv=None)</code> 222 <pre>Updates the content of a store page. 223 224Args: 225 enterpriseId: string, The ID of the enterprise. (required) 226 pageId: string, The ID of the page. (required) 227 body: object, The request body. 228 The object takes the form of: 229 230{ # 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. 231 "id": "A String", # Unique ID of this page. Assigned by the server. Immutable once assigned. 232 "link": [ # 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. 233 "A String", 234 ], 235 "name": [ # 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. 236 { # A localized string with its locale. 237 "locale": "A String", # The BCP47 tag for a locale. (e.g. "en-US", "de"). 238 "text": "A String", # The text localized in the associated locale. 239 }, 240 ], 241} 242 243 x__xgafv: string, V1 error format. 244 Allowed values 245 1 - v1 error format 246 2 - v2 error format 247 248Returns: 249 An object of the form: 250 251 { # 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. 252 "id": "A String", # Unique ID of this page. Assigned by the server. Immutable once assigned. 253 "link": [ # 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. 254 "A String", 255 ], 256 "name": [ # 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. 257 { # A localized string with its locale. 258 "locale": "A String", # The BCP47 tag for a locale. (e.g. "en-US", "de"). 259 "text": "A String", # The text localized in the associated locale. 260 }, 261 ], 262}</pre> 263</div> 264 265</body></html>