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="androidpublisher_v3.html">Google Play Android Developer API</a> . <a href="androidpublisher_v3.users.html">users</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="#create">create(parent, body=None, x__xgafv=None)</a></code></p> 82<p class="firstline">Grant access for a user to the given developer account.</p> 83<p class="toc_element"> 84 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p> 85<p class="firstline">Removes all access for the user to the given developer account.</p> 86<p class="toc_element"> 87 <code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p> 88<p class="firstline">Lists all users with access to a developer account.</p> 89<p class="toc_element"> 90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 91<p class="firstline">Retrieves the next page of results.</p> 92<p class="toc_element"> 93 <code><a href="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p> 94<p class="firstline">Updates access for the user to the developer account.</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="create">create(parent, body=None, x__xgafv=None)</code> 103 <pre>Grant access for a user to the given developer account. 104 105Args: 106 parent: string, Required. The developer account to add the user to. Format: developers/{developer} (required) 107 body: object, The request body. 108 The object takes the form of: 109 110{ # A user resource. 111 "accessState": "A String", # Output only. The state of the user's access to the Play Console. 112 "developerAccountPermissions": [ # Permissions for the user which apply across the developer account. 113 "A String", 114 ], 115 "email": "A String", # Immutable. The user's email address. 116 "expirationTime": "A String", # The time at which the user's access expires, if set. 117 "grants": [ # Output only. Per-app permissions for the user. 118 { # An access grant resource. 119 "appLevelPermissions": [ # The permissions granted to the user for this app. 120 "A String", 121 ], 122 "name": "A String", # Required. Resource name for this grant, following the pattern "developers/{developer}/users/{email}/grants/{package_name}". 123 "packageName": "A String", # Immutable. The package name of the app. 124 }, 125 ], 126 "name": "A String", # Required. Resource name for this user, following the pattern "developers/{developer}/users/{email}". 127 "partial": True or False, # Output only. Whether there are more permissions for the user that are not represented here. 128} 129 130 x__xgafv: string, V1 error format. 131 Allowed values 132 1 - v1 error format 133 2 - v2 error format 134 135Returns: 136 An object of the form: 137 138 { # A user resource. 139 "accessState": "A String", # Output only. The state of the user's access to the Play Console. 140 "developerAccountPermissions": [ # Permissions for the user which apply across the developer account. 141 "A String", 142 ], 143 "email": "A String", # Immutable. The user's email address. 144 "expirationTime": "A String", # The time at which the user's access expires, if set. 145 "grants": [ # Output only. Per-app permissions for the user. 146 { # An access grant resource. 147 "appLevelPermissions": [ # The permissions granted to the user for this app. 148 "A String", 149 ], 150 "name": "A String", # Required. Resource name for this grant, following the pattern "developers/{developer}/users/{email}/grants/{package_name}". 151 "packageName": "A String", # Immutable. The package name of the app. 152 }, 153 ], 154 "name": "A String", # Required. Resource name for this user, following the pattern "developers/{developer}/users/{email}". 155 "partial": True or False, # Output only. Whether there are more permissions for the user that are not represented here. 156}</pre> 157</div> 158 159<div class="method"> 160 <code class="details" id="delete">delete(name, x__xgafv=None)</code> 161 <pre>Removes all access for the user to the given developer account. 162 163Args: 164 name: string, Required. The name of the user to delete. Format: developers/{developer}/users/{email} (required) 165 x__xgafv: string, V1 error format. 166 Allowed values 167 1 - v1 error format 168 2 - v2 error format 169</pre> 170</div> 171 172<div class="method"> 173 <code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code> 174 <pre>Lists all users with access to a developer account. 175 176Args: 177 parent: string, Required. The developer account to fetch users from. Format: developers/{developer} (required) 178 pageSize: integer, The maximum number of results to return. This must be set to -1 to disable pagination. 179 pageToken: string, A token received from a previous call to this method, in order to retrieve further results. 180 x__xgafv: string, V1 error format. 181 Allowed values 182 1 - v1 error format 183 2 - v2 error format 184 185Returns: 186 An object of the form: 187 188 { # A response containing one or more users with access to an account. 189 "nextPageToken": "A String", # A token to pass to subsequent calls in order to retrieve subsequent results. This will not be set if there are no more results to return. 190 "users": [ # The resulting users. 191 { # A user resource. 192 "accessState": "A String", # Output only. The state of the user's access to the Play Console. 193 "developerAccountPermissions": [ # Permissions for the user which apply across the developer account. 194 "A String", 195 ], 196 "email": "A String", # Immutable. The user's email address. 197 "expirationTime": "A String", # The time at which the user's access expires, if set. 198 "grants": [ # Output only. Per-app permissions for the user. 199 { # An access grant resource. 200 "appLevelPermissions": [ # The permissions granted to the user for this app. 201 "A String", 202 ], 203 "name": "A String", # Required. Resource name for this grant, following the pattern "developers/{developer}/users/{email}/grants/{package_name}". 204 "packageName": "A String", # Immutable. The package name of the app. 205 }, 206 ], 207 "name": "A String", # Required. Resource name for this user, following the pattern "developers/{developer}/users/{email}". 208 "partial": True or False, # Output only. Whether there are more permissions for the user that are not represented here. 209 }, 210 ], 211}</pre> 212</div> 213 214<div class="method"> 215 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 216 <pre>Retrieves the next page of results. 217 218Args: 219 previous_request: The request for the previous page. (required) 220 previous_response: The response from the request for the previous page. (required) 221 222Returns: 223 A request object that you can call 'execute()' on to request the next 224 page. Returns None if there are no more items in the collection. 225 </pre> 226</div> 227 228<div class="method"> 229 <code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code> 230 <pre>Updates access for the user to the developer account. 231 232Args: 233 name: string, Required. Resource name for this user, following the pattern "developers/{developer}/users/{email}". (required) 234 body: object, The request body. 235 The object takes the form of: 236 237{ # A user resource. 238 "accessState": "A String", # Output only. The state of the user's access to the Play Console. 239 "developerAccountPermissions": [ # Permissions for the user which apply across the developer account. 240 "A String", 241 ], 242 "email": "A String", # Immutable. The user's email address. 243 "expirationTime": "A String", # The time at which the user's access expires, if set. 244 "grants": [ # Output only. Per-app permissions for the user. 245 { # An access grant resource. 246 "appLevelPermissions": [ # The permissions granted to the user for this app. 247 "A String", 248 ], 249 "name": "A String", # Required. Resource name for this grant, following the pattern "developers/{developer}/users/{email}/grants/{package_name}". 250 "packageName": "A String", # Immutable. The package name of the app. 251 }, 252 ], 253 "name": "A String", # Required. Resource name for this user, following the pattern "developers/{developer}/users/{email}". 254 "partial": True or False, # Output only. Whether there are more permissions for the user that are not represented here. 255} 256 257 updateMask: string, Optional. The list of fields to be updated. 258 x__xgafv: string, V1 error format. 259 Allowed values 260 1 - v1 error format 261 2 - v2 error format 262 263Returns: 264 An object of the form: 265 266 { # A user resource. 267 "accessState": "A String", # Output only. The state of the user's access to the Play Console. 268 "developerAccountPermissions": [ # Permissions for the user which apply across the developer account. 269 "A String", 270 ], 271 "email": "A String", # Immutable. The user's email address. 272 "expirationTime": "A String", # The time at which the user's access expires, if set. 273 "grants": [ # Output only. Per-app permissions for the user. 274 { # An access grant resource. 275 "appLevelPermissions": [ # The permissions granted to the user for this app. 276 "A String", 277 ], 278 "name": "A String", # Required. Resource name for this grant, following the pattern "developers/{developer}/users/{email}/grants/{package_name}". 279 "packageName": "A String", # Immutable. The package name of the app. 280 }, 281 ], 282 "name": "A String", # Required. Resource name for this user, following the pattern "developers/{developer}/users/{email}". 283 "partial": True or False, # Output only. Whether there are more permissions for the user that are not represented here. 284}</pre> 285</div> 286 287</body></html>