blob: d40a5597d791f5305f7be451170a10407d058142 [file] [log] [blame]
Craig Citroe633be12015-03-02 13:40:36 -08001<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="gamesConfiguration_v1configuration.html">Google Play Game Services Publishing API</a> . <a href="gamesConfiguration_v1configuration.achievementConfigurations.html">achievementConfigurations</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#delete">delete(achievementId, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080079<p class="firstline">Delete the achievement configuration with the given ID.</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#get">get(achievementId, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080082<p class="firstline">Retrieves the metadata of the achievement configuration with the given ID.</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#insert">insert(applicationId, body=None, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080085<p class="firstline">Insert a new achievement configuration in this application.</p>
86<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070087 <code><a href="#list">list(applicationId, maxResults=None, pageToken=None, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080088<p class="firstline">Returns a list of the achievement configurations in this application.</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">
Dan O'Mearadd494642020-05-01 07:42:23 -070093 <code><a href="#update">update(achievementId, body=None, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080094<p class="firstline">Update the metadata of the achievement configuration with the given ID.</p>
95<h3>Method Details</h3>
96<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070097 <code class="details" id="delete">delete(achievementId, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -080098 <pre>Delete the achievement configuration with the given ID.
99
100Args:
101 achievementId: string, The ID of the achievement used by this method. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700102 x__xgafv: string, V1 error format.
103 Allowed values
104 1 - v1 error format
105 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800106</pre>
107</div>
108
109<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 <code class="details" id="get">get(achievementId, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800111 <pre>Retrieves the metadata of the achievement configuration with the given ID.
112
113Args:
114 achievementId: string, The ID of the achievement used by this method. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700115 x__xgafv: string, V1 error format.
116 Allowed values
117 1 - v1 error format
118 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800119
120Returns:
121 An object of the form:
122
Dan O'Mearadd494642020-05-01 07:42:23 -0700123 { # An achievement configuration resource.
Craig Citroe633be12015-03-02 13:40:36 -0800124 "achievementType": "A String", # The type of the achievement.
Dan O'Mearadd494642020-05-01 07:42:23 -0700125 "stepsToUnlock": 42, # Steps to unlock. Only applicable to incremental achievements.
126 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
127 # string `gamesConfiguration#achievementConfiguration`.
Craig Citroe633be12015-03-02 13:40:36 -0800128 "initialState": "A String", # The initial state of the achievement.
Craig Citroe633be12015-03-02 13:40:36 -0800129 "token": "A String", # The token for this resource.
Dan O'Mearadd494642020-05-01 07:42:23 -0700130 "draft": { # An achievement configuration detail. # The draft data of the achievement.
131 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
132 # string `gamesConfiguration#achievementConfigurationDetail`.
133 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
134 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
135 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800136 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700137 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800138 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700139 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
140 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800141 "value": "A String", # The string value.
142 },
143 ],
144 },
145 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
146 "pointValue": 42, # Point value for the achievement.
147 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700148 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
149 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
150 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800151 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700152 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800153 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700154 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
155 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800156 "value": "A String", # The string value.
157 },
158 ],
159 },
160 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700161 "published": { # An achievement configuration detail. # The read-only published data of the achievement.
162 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
163 # string `gamesConfiguration#achievementConfigurationDetail`.
164 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
165 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
166 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800167 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700168 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800169 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700170 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
171 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800172 "value": "A String", # The string value.
173 },
174 ],
175 },
176 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
177 "pointValue": 42, # Point value for the achievement.
178 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700179 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
180 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
181 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800182 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700183 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800184 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700185 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
186 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800187 "value": "A String", # The string value.
188 },
189 ],
190 },
191 },
192 "id": "A String", # The ID of the achievement.
193 }</pre>
194</div>
195
196<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700197 <code class="details" id="insert">insert(applicationId, body=None, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800198 <pre>Insert a new achievement configuration in this application.
199
200Args:
201 applicationId: string, The application ID from the Google Play developer console. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700202 body: object, The request body.
Craig Citroe633be12015-03-02 13:40:36 -0800203 The object takes the form of:
204
Dan O'Mearadd494642020-05-01 07:42:23 -0700205{ # An achievement configuration resource.
Craig Citroe633be12015-03-02 13:40:36 -0800206 "achievementType": "A String", # The type of the achievement.
Dan O'Mearadd494642020-05-01 07:42:23 -0700207 "stepsToUnlock": 42, # Steps to unlock. Only applicable to incremental achievements.
208 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
209 # string `gamesConfiguration#achievementConfiguration`.
Craig Citroe633be12015-03-02 13:40:36 -0800210 "initialState": "A String", # The initial state of the achievement.
Craig Citroe633be12015-03-02 13:40:36 -0800211 "token": "A String", # The token for this resource.
Dan O'Mearadd494642020-05-01 07:42:23 -0700212 "draft": { # An achievement configuration detail. # The draft data of the achievement.
213 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
214 # string `gamesConfiguration#achievementConfigurationDetail`.
215 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
216 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
217 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800218 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700219 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800220 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700221 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
222 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800223 "value": "A String", # The string value.
224 },
225 ],
226 },
227 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
228 "pointValue": 42, # Point value for the achievement.
229 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700230 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
231 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
232 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800233 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700234 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800235 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700236 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
237 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800238 "value": "A String", # The string value.
239 },
240 ],
241 },
242 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700243 "published": { # An achievement configuration detail. # The read-only published data of the achievement.
244 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
245 # string `gamesConfiguration#achievementConfigurationDetail`.
246 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
247 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
248 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800249 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700250 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800251 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700252 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
253 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800254 "value": "A String", # The string value.
255 },
256 ],
257 },
258 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
259 "pointValue": 42, # Point value for the achievement.
260 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700261 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
262 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
263 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800264 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700265 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800266 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700267 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
268 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800269 "value": "A String", # The string value.
270 },
271 ],
272 },
273 },
274 "id": "A String", # The ID of the achievement.
275 }
276
Dan O'Mearadd494642020-05-01 07:42:23 -0700277 x__xgafv: string, V1 error format.
278 Allowed values
279 1 - v1 error format
280 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800281
282Returns:
283 An object of the form:
284
Dan O'Mearadd494642020-05-01 07:42:23 -0700285 { # An achievement configuration resource.
Craig Citroe633be12015-03-02 13:40:36 -0800286 "achievementType": "A String", # The type of the achievement.
Dan O'Mearadd494642020-05-01 07:42:23 -0700287 "stepsToUnlock": 42, # Steps to unlock. Only applicable to incremental achievements.
288 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
289 # string `gamesConfiguration#achievementConfiguration`.
Craig Citroe633be12015-03-02 13:40:36 -0800290 "initialState": "A String", # The initial state of the achievement.
Craig Citroe633be12015-03-02 13:40:36 -0800291 "token": "A String", # The token for this resource.
Dan O'Mearadd494642020-05-01 07:42:23 -0700292 "draft": { # An achievement configuration detail. # The draft data of the achievement.
293 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
294 # string `gamesConfiguration#achievementConfigurationDetail`.
295 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
296 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
297 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800298 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700299 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800300 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700301 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
302 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800303 "value": "A String", # The string value.
304 },
305 ],
306 },
307 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
308 "pointValue": 42, # Point value for the achievement.
309 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700310 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
311 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
312 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800313 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700314 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800315 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700316 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
317 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800318 "value": "A String", # The string value.
319 },
320 ],
321 },
322 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700323 "published": { # An achievement configuration detail. # The read-only published data of the achievement.
324 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
325 # string `gamesConfiguration#achievementConfigurationDetail`.
326 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
327 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
328 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800329 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700330 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800331 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700332 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
333 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800334 "value": "A String", # The string value.
335 },
336 ],
337 },
338 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
339 "pointValue": 42, # Point value for the achievement.
340 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700341 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
342 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
343 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800344 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700345 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800346 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700347 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
348 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800349 "value": "A String", # The string value.
350 },
351 ],
352 },
353 },
354 "id": "A String", # The ID of the achievement.
355 }</pre>
356</div>
357
358<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700359 <code class="details" id="list">list(applicationId, maxResults=None, pageToken=None, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800360 <pre>Returns a list of the achievement configurations in this application.
361
362Args:
363 applicationId: string, The application ID from the Google Play developer console. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700364 maxResults: integer, The maximum number of resource configurations to return in the response,
365used for paging. For any response, the actual number of resources returned
366may be less than the specified `maxResults`.
Craig Citroe633be12015-03-02 13:40:36 -0800367 pageToken: string, The token returned by the previous request.
Dan O'Mearadd494642020-05-01 07:42:23 -0700368 x__xgafv: string, V1 error format.
369 Allowed values
370 1 - v1 error format
371 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800372
373Returns:
374 An object of the form:
375
Dan O'Mearadd494642020-05-01 07:42:23 -0700376 { # A ListConfigurations response.
Craig Citroe633be12015-03-02 13:40:36 -0800377 "nextPageToken": "A String", # The pagination token for the next page of results.
378 "items": [ # The achievement configurations.
Dan O'Mearadd494642020-05-01 07:42:23 -0700379 { # An achievement configuration resource.
Craig Citroe633be12015-03-02 13:40:36 -0800380 "achievementType": "A String", # The type of the achievement.
Dan O'Mearadd494642020-05-01 07:42:23 -0700381 "stepsToUnlock": 42, # Steps to unlock. Only applicable to incremental achievements.
382 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
383 # string `gamesConfiguration#achievementConfiguration`.
Craig Citroe633be12015-03-02 13:40:36 -0800384 "initialState": "A String", # The initial state of the achievement.
Craig Citroe633be12015-03-02 13:40:36 -0800385 "token": "A String", # The token for this resource.
Dan O'Mearadd494642020-05-01 07:42:23 -0700386 "draft": { # An achievement configuration detail. # The draft data of the achievement.
387 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
388 # string `gamesConfiguration#achievementConfigurationDetail`.
389 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
390 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
391 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800392 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700393 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800394 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700395 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
396 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800397 "value": "A String", # The string value.
398 },
399 ],
400 },
401 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
402 "pointValue": 42, # Point value for the achievement.
403 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700404 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
405 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
406 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800407 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700408 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800409 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700410 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
411 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800412 "value": "A String", # The string value.
413 },
414 ],
415 },
416 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700417 "published": { # An achievement configuration detail. # The read-only published data of the achievement.
418 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
419 # string `gamesConfiguration#achievementConfigurationDetail`.
420 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
421 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
422 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800423 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700424 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800425 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700426 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
427 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800428 "value": "A String", # The string value.
429 },
430 ],
431 },
432 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
433 "pointValue": 42, # Point value for the achievement.
434 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700435 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
436 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
437 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800438 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700439 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800440 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700441 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
442 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800443 "value": "A String", # The string value.
444 },
445 ],
446 },
447 },
448 "id": "A String", # The ID of the achievement.
449 },
450 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700451 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
452 # string `gamesConfiguration#achievementConfigurationListResponse`.
Craig Citroe633be12015-03-02 13:40:36 -0800453 }</pre>
454</div>
455
456<div class="method">
457 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
458 <pre>Retrieves the next page of results.
459
460Args:
461 previous_request: The request for the previous page. (required)
462 previous_response: The response from the request for the previous page. (required)
463
464Returns:
465 A request object that you can call 'execute()' on to request the next
466 page. Returns None if there are no more items in the collection.
467 </pre>
468</div>
469
470<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700471 <code class="details" id="update">update(achievementId, body=None, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800472 <pre>Update the metadata of the achievement configuration with the given ID.
473
474Args:
475 achievementId: string, The ID of the achievement used by this method. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700476 body: object, The request body.
Craig Citroe633be12015-03-02 13:40:36 -0800477 The object takes the form of:
478
Dan O'Mearadd494642020-05-01 07:42:23 -0700479{ # An achievement configuration resource.
Craig Citroe633be12015-03-02 13:40:36 -0800480 "achievementType": "A String", # The type of the achievement.
Dan O'Mearadd494642020-05-01 07:42:23 -0700481 "stepsToUnlock": 42, # Steps to unlock. Only applicable to incremental achievements.
482 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
483 # string `gamesConfiguration#achievementConfiguration`.
Craig Citroe633be12015-03-02 13:40:36 -0800484 "initialState": "A String", # The initial state of the achievement.
Craig Citroe633be12015-03-02 13:40:36 -0800485 "token": "A String", # The token for this resource.
Dan O'Mearadd494642020-05-01 07:42:23 -0700486 "draft": { # An achievement configuration detail. # The draft data of the achievement.
487 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
488 # string `gamesConfiguration#achievementConfigurationDetail`.
489 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
490 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
491 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800492 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700493 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800494 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700495 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
496 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800497 "value": "A String", # The string value.
498 },
499 ],
500 },
501 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
502 "pointValue": 42, # Point value for the achievement.
503 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700504 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
505 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
506 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800507 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700508 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800509 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700510 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
511 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800512 "value": "A String", # The string value.
513 },
514 ],
515 },
516 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700517 "published": { # An achievement configuration detail. # The read-only published data of the achievement.
518 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
519 # string `gamesConfiguration#achievementConfigurationDetail`.
520 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
521 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
522 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800523 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700524 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800525 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700526 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
527 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800528 "value": "A String", # The string value.
529 },
530 ],
531 },
532 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
533 "pointValue": 42, # Point value for the achievement.
534 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700535 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
536 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
537 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800538 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700539 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800540 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700541 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
542 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800543 "value": "A String", # The string value.
544 },
545 ],
546 },
547 },
548 "id": "A String", # The ID of the achievement.
549 }
550
Dan O'Mearadd494642020-05-01 07:42:23 -0700551 x__xgafv: string, V1 error format.
552 Allowed values
553 1 - v1 error format
554 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800555
556Returns:
557 An object of the form:
558
Dan O'Mearadd494642020-05-01 07:42:23 -0700559 { # An achievement configuration resource.
Craig Citroe633be12015-03-02 13:40:36 -0800560 "achievementType": "A String", # The type of the achievement.
Dan O'Mearadd494642020-05-01 07:42:23 -0700561 "stepsToUnlock": 42, # Steps to unlock. Only applicable to incremental achievements.
562 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
563 # string `gamesConfiguration#achievementConfiguration`.
Craig Citroe633be12015-03-02 13:40:36 -0800564 "initialState": "A String", # The initial state of the achievement.
Craig Citroe633be12015-03-02 13:40:36 -0800565 "token": "A String", # The token for this resource.
Dan O'Mearadd494642020-05-01 07:42:23 -0700566 "draft": { # An achievement configuration detail. # The draft data of the achievement.
567 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
568 # string `gamesConfiguration#achievementConfigurationDetail`.
569 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
570 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
571 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800572 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700573 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800574 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700575 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
576 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800577 "value": "A String", # The string value.
578 },
579 ],
580 },
581 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
582 "pointValue": 42, # Point value for the achievement.
583 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700584 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
585 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
586 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800587 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700588 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800589 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700590 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
591 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800592 "value": "A String", # The string value.
593 },
594 ],
595 },
596 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700597 "published": { # An achievement configuration detail. # The read-only published data of the achievement.
598 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
599 # string `gamesConfiguration#achievementConfigurationDetail`.
600 "name": { # A localized string bundle resource. # Localized strings for the achievement name.
601 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
602 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800603 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700604 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800605 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700606 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
607 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800608 "value": "A String", # The string value.
609 },
610 ],
611 },
612 "iconUrl": "A String", # The icon url of this achievement. Writes to this field are ignored.
613 "pointValue": 42, # Point value for the achievement.
614 "sortRank": 42, # The sort rank of this achievement. Writes to this field are ignored.
Dan O'Mearadd494642020-05-01 07:42:23 -0700615 "description": { # A localized string bundle resource. # Localized strings for the achievement description.
616 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
617 # string `gamesConfiguration#localizedStringBundle`.
Craig Citroe633be12015-03-02 13:40:36 -0800618 "translations": [ # The locale strings.
Dan O'Mearadd494642020-05-01 07:42:23 -0700619 { # A localized string resource.
Craig Citroe633be12015-03-02 13:40:36 -0800620 "locale": "A String", # The locale string.
Dan O'Mearadd494642020-05-01 07:42:23 -0700621 "kind": "A String", # Uniquely identifies the type of this resource. Value is always the fixed
622 # string `gamesConfiguration#localizedString`.
Craig Citroe633be12015-03-02 13:40:36 -0800623 "value": "A String", # The string value.
624 },
625 ],
626 },
627 },
628 "id": "A String", # The ID of the achievement.
629 }</pre>
630</div>
631
632</body></html>