blob: 484f592974382dadd81f17e09a7c0346bff14e60 [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">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#delete">delete(achievementId, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080082<p class="firstline">Delete 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="#get">get(achievementId, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080085<p class="firstline">Retrieves the metadata of the achievement configuration with the given ID.</p>
86<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070087 <code><a href="#insert">insert(applicationId, body=None, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080088<p class="firstline">Insert a new achievement configuration in this application.</p>
89<p class="toc_element">
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -080090 <code><a href="#list">list(applicationId, maxResults=None, pageToken=None, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080091<p class="firstline">Returns a list of the achievement configurations in this application.</p>
92<p class="toc_element">
93 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070096 <code><a href="#update">update(achievementId, body=None, x__xgafv=None)</a></code></p>
Craig Citroe633be12015-03-02 13:40:36 -080097<p class="firstline">Update the metadata of the achievement configuration with the given ID.</p>
98<h3>Method Details</h3>
99<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700100 <code class="details" id="close">close()</code>
101 <pre>Close httplib2 connections.</pre>
102</div>
103
104<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700105 <code class="details" id="delete">delete(achievementId, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800106 <pre>Delete the achievement configuration with the given ID.
107
108Args:
109 achievementId: string, The ID of the achievement used by this method. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 x__xgafv: string, V1 error format.
111 Allowed values
112 1 - v1 error format
113 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800114</pre>
115</div>
116
117<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700118 <code class="details" id="get">get(achievementId, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800119 <pre>Retrieves the metadata of the achievement configuration with the given ID.
120
121Args:
122 achievementId: string, The ID of the achievement used by this method. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700123 x__xgafv: string, V1 error format.
124 Allowed values
125 1 - v1 error format
126 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800127
128Returns:
129 An object of the form:
130
Dan O'Mearadd494642020-05-01 07:42:23 -0700131 { # An achievement configuration resource.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800132 &quot;draft&quot;: { # An achievement configuration detail. # The draft data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800133 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800134 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800135 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800136 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800137 &quot;translations&quot;: [ # The locale strings.
138 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800139 &quot;value&quot;: &quot;A String&quot;, # The string value.
140 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800141 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800142 },
143 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800144 },
145 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
146 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
147 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800148 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800149 &quot;translations&quot;: [ # The locale strings.
150 { # A localized string resource.
151 &quot;value&quot;: &quot;A String&quot;, # The string value.
152 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
153 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
154 },
155 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700156 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800157 },
158 &quot;stepsToUnlock&quot;: 42, # Steps to unlock. Only applicable to incremental achievements.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800159 &quot;achievementType&quot;: &quot;A String&quot;, # The type of the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800160 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfiguration`.
161 &quot;published&quot;: { # An achievement configuration detail. # The read-only published data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800162 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800163 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800164 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800165 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800166 &quot;translations&quot;: [ # The locale strings.
167 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800168 &quot;value&quot;: &quot;A String&quot;, # The string value.
169 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800170 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800171 },
172 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800173 },
174 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
175 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
176 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800177 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800178 &quot;translations&quot;: [ # The locale strings.
179 { # A localized string resource.
180 &quot;value&quot;: &quot;A String&quot;, # The string value.
181 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
182 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
183 },
184 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800185 },
186 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800187 &quot;token&quot;: &quot;A String&quot;, # The token for this resource.
188 &quot;initialState&quot;: &quot;A String&quot;, # The initial state of the achievement.
189 &quot;id&quot;: &quot;A String&quot;, # The ID of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800190 }</pre>
Craig Citroe633be12015-03-02 13:40:36 -0800191</div>
192
193<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700194 <code class="details" id="insert">insert(applicationId, body=None, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800195 <pre>Insert a new achievement configuration in this application.
196
197Args:
198 applicationId: string, The application ID from the Google Play developer console. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700199 body: object, The request body.
Craig Citroe633be12015-03-02 13:40:36 -0800200 The object takes the form of:
201
Dan O'Mearadd494642020-05-01 07:42:23 -0700202{ # An achievement configuration resource.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800203 &quot;draft&quot;: { # An achievement configuration detail. # The draft data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800204 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800205 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800206 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800207 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800208 &quot;translations&quot;: [ # The locale strings.
209 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800210 &quot;value&quot;: &quot;A String&quot;, # The string value.
211 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800212 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800213 },
214 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800215 },
216 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
217 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
218 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800219 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800220 &quot;translations&quot;: [ # The locale strings.
221 { # A localized string resource.
222 &quot;value&quot;: &quot;A String&quot;, # The string value.
223 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
224 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
225 },
226 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700227 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800228 },
229 &quot;stepsToUnlock&quot;: 42, # Steps to unlock. Only applicable to incremental achievements.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800230 &quot;achievementType&quot;: &quot;A String&quot;, # The type of the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800231 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfiguration`.
232 &quot;published&quot;: { # An achievement configuration detail. # The read-only published data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800233 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800234 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800235 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800236 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800237 &quot;translations&quot;: [ # The locale strings.
238 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800239 &quot;value&quot;: &quot;A String&quot;, # The string value.
240 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800241 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800242 },
243 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800244 },
245 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
246 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
247 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800248 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800249 &quot;translations&quot;: [ # The locale strings.
250 { # A localized string resource.
251 &quot;value&quot;: &quot;A String&quot;, # The string value.
252 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
253 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
254 },
255 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800256 },
257 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800258 &quot;token&quot;: &quot;A String&quot;, # The token for this resource.
259 &quot;initialState&quot;: &quot;A String&quot;, # The initial state of the achievement.
260 &quot;id&quot;: &quot;A String&quot;, # The ID of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800261}
Craig Citroe633be12015-03-02 13:40:36 -0800262
Dan O'Mearadd494642020-05-01 07:42:23 -0700263 x__xgafv: string, V1 error format.
264 Allowed values
265 1 - v1 error format
266 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800267
268Returns:
269 An object of the form:
270
Dan O'Mearadd494642020-05-01 07:42:23 -0700271 { # An achievement configuration resource.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800272 &quot;draft&quot;: { # An achievement configuration detail. # The draft data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800273 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800274 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800275 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800276 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800277 &quot;translations&quot;: [ # The locale strings.
278 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800279 &quot;value&quot;: &quot;A String&quot;, # The string value.
280 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800281 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800282 },
283 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800284 },
285 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
286 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
287 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800288 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800289 &quot;translations&quot;: [ # The locale strings.
290 { # A localized string resource.
291 &quot;value&quot;: &quot;A String&quot;, # The string value.
292 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
293 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
294 },
295 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700296 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800297 },
298 &quot;stepsToUnlock&quot;: 42, # Steps to unlock. Only applicable to incremental achievements.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800299 &quot;achievementType&quot;: &quot;A String&quot;, # The type of the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800300 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfiguration`.
301 &quot;published&quot;: { # An achievement configuration detail. # The read-only published data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800302 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800303 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800304 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800305 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800306 &quot;translations&quot;: [ # The locale strings.
307 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800308 &quot;value&quot;: &quot;A String&quot;, # The string value.
309 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800310 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800311 },
312 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800313 },
314 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
315 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
316 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800317 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800318 &quot;translations&quot;: [ # The locale strings.
319 { # A localized string resource.
320 &quot;value&quot;: &quot;A String&quot;, # The string value.
321 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
322 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
323 },
324 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800325 },
326 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800327 &quot;token&quot;: &quot;A String&quot;, # The token for this resource.
328 &quot;initialState&quot;: &quot;A String&quot;, # The initial state of the achievement.
329 &quot;id&quot;: &quot;A String&quot;, # The ID of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800330 }</pre>
Craig Citroe633be12015-03-02 13:40:36 -0800331</div>
332
333<div class="method">
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800334 <code class="details" id="list">list(applicationId, maxResults=None, pageToken=None, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800335 <pre>Returns a list of the achievement configurations in this application.
336
337Args:
338 applicationId: string, The application ID from the Google Play developer console. (required)
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800339 maxResults: integer, The maximum number of resource configurations to return in the response, used for paging. For any response, the actual number of resources returned may be less than the specified `maxResults`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800340 pageToken: string, The token returned by the previous request.
Dan O'Mearadd494642020-05-01 07:42:23 -0700341 x__xgafv: string, V1 error format.
342 Allowed values
343 1 - v1 error format
344 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800345
346Returns:
347 An object of the form:
348
Dan O'Mearadd494642020-05-01 07:42:23 -0700349 { # A ListConfigurations response.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800350 &quot;nextPageToken&quot;: &quot;A String&quot;, # The pagination token for the next page of results.
Bu Sun Kim65020912020-05-20 12:08:20 -0700351 &quot;items&quot;: [ # The achievement configurations.
Dan O'Mearadd494642020-05-01 07:42:23 -0700352 { # An achievement configuration resource.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800353 &quot;draft&quot;: { # An achievement configuration detail. # The draft data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800354 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800355 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800356 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800357 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800358 &quot;translations&quot;: [ # The locale strings.
359 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800360 &quot;value&quot;: &quot;A String&quot;, # The string value.
361 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800362 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800363 },
364 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800365 },
366 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
367 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
368 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800369 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800370 &quot;translations&quot;: [ # The locale strings.
371 { # A localized string resource.
372 &quot;value&quot;: &quot;A String&quot;, # The string value.
373 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
374 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
375 },
376 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700377 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700378 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800379 &quot;stepsToUnlock&quot;: 42, # Steps to unlock. Only applicable to incremental achievements.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800380 &quot;achievementType&quot;: &quot;A String&quot;, # The type of the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800381 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfiguration`.
382 &quot;published&quot;: { # An achievement configuration detail. # The read-only published data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800383 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800384 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800385 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800386 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800387 &quot;translations&quot;: [ # The locale strings.
388 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800389 &quot;value&quot;: &quot;A String&quot;, # The string value.
390 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800391 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800392 },
393 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800394 },
395 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
396 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
397 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800398 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800399 &quot;translations&quot;: [ # The locale strings.
400 { # A localized string resource.
401 &quot;value&quot;: &quot;A String&quot;, # The string value.
402 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
403 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
404 },
405 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800406 },
407 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800408 &quot;token&quot;: &quot;A String&quot;, # The token for this resource.
409 &quot;initialState&quot;: &quot;A String&quot;, # The initial state of the achievement.
410 &quot;id&quot;: &quot;A String&quot;, # The ID of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800411 },
Craig Citroe633be12015-03-02 13:40:36 -0800412 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800413 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationListResponse`.
Craig Citroe633be12015-03-02 13:40:36 -0800414 }</pre>
415</div>
416
417<div class="method">
418 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
419 <pre>Retrieves the next page of results.
420
421Args:
422 previous_request: The request for the previous page. (required)
423 previous_response: The response from the request for the previous page. (required)
424
425Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700426 A request object that you can call &#x27;execute()&#x27; on to request the next
Craig Citroe633be12015-03-02 13:40:36 -0800427 page. Returns None if there are no more items in the collection.
428 </pre>
429</div>
430
431<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700432 <code class="details" id="update">update(achievementId, body=None, x__xgafv=None)</code>
Craig Citroe633be12015-03-02 13:40:36 -0800433 <pre>Update the metadata of the achievement configuration with the given ID.
434
435Args:
436 achievementId: string, The ID of the achievement used by this method. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700437 body: object, The request body.
Craig Citroe633be12015-03-02 13:40:36 -0800438 The object takes the form of:
439
Dan O'Mearadd494642020-05-01 07:42:23 -0700440{ # An achievement configuration resource.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800441 &quot;draft&quot;: { # An achievement configuration detail. # The draft data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800442 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800443 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800444 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800445 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800446 &quot;translations&quot;: [ # The locale strings.
447 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800448 &quot;value&quot;: &quot;A String&quot;, # The string value.
449 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800450 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800451 },
452 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800453 },
454 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
455 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
456 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800457 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800458 &quot;translations&quot;: [ # The locale strings.
459 { # A localized string resource.
460 &quot;value&quot;: &quot;A String&quot;, # The string value.
461 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
462 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
463 },
464 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700465 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800466 },
467 &quot;stepsToUnlock&quot;: 42, # Steps to unlock. Only applicable to incremental achievements.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800468 &quot;achievementType&quot;: &quot;A String&quot;, # The type of the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800469 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfiguration`.
470 &quot;published&quot;: { # An achievement configuration detail. # The read-only published data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800471 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800472 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800473 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800474 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800475 &quot;translations&quot;: [ # The locale strings.
476 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800477 &quot;value&quot;: &quot;A String&quot;, # The string value.
478 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800479 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800480 },
481 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800482 },
483 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
484 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
485 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800486 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800487 &quot;translations&quot;: [ # The locale strings.
488 { # A localized string resource.
489 &quot;value&quot;: &quot;A String&quot;, # The string value.
490 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
491 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
492 },
493 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800494 },
495 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800496 &quot;token&quot;: &quot;A String&quot;, # The token for this resource.
497 &quot;initialState&quot;: &quot;A String&quot;, # The initial state of the achievement.
498 &quot;id&quot;: &quot;A String&quot;, # The ID of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800499}
Craig Citroe633be12015-03-02 13:40:36 -0800500
Dan O'Mearadd494642020-05-01 07:42:23 -0700501 x__xgafv: string, V1 error format.
502 Allowed values
503 1 - v1 error format
504 2 - v2 error format
Craig Citroe633be12015-03-02 13:40:36 -0800505
506Returns:
507 An object of the form:
508
Dan O'Mearadd494642020-05-01 07:42:23 -0700509 { # An achievement configuration resource.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800510 &quot;draft&quot;: { # An achievement configuration detail. # The draft data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800511 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800512 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800513 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800514 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800515 &quot;translations&quot;: [ # The locale strings.
516 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800517 &quot;value&quot;: &quot;A String&quot;, # The string value.
518 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800519 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800520 },
521 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800522 },
523 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
524 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
525 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800526 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800527 &quot;translations&quot;: [ # The locale strings.
528 { # A localized string resource.
529 &quot;value&quot;: &quot;A String&quot;, # The string value.
530 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
531 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
532 },
533 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700534 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800535 },
536 &quot;stepsToUnlock&quot;: 42, # Steps to unlock. Only applicable to incremental achievements.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800537 &quot;achievementType&quot;: &quot;A String&quot;, # The type of the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800538 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfiguration`.
539 &quot;published&quot;: { # An achievement configuration detail. # The read-only published data of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800540 &quot;pointValue&quot;: 42, # Point value for the achievement.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800541 &quot;iconUrl&quot;: &quot;A String&quot;, # The icon url of this achievement. Writes to this field are ignored.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800542 &quot;description&quot;: { # A localized string bundle resource. # Localized strings for the achievement description.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800543 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800544 &quot;translations&quot;: [ # The locale strings.
545 { # A localized string resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800546 &quot;value&quot;: &quot;A String&quot;, # The string value.
547 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800548 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800549 },
550 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800551 },
552 &quot;sortRank&quot;: 42, # The sort rank of this achievement. Writes to this field are ignored.
553 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#achievementConfigurationDetail`.
554 &quot;name&quot;: { # A localized string bundle resource. # Localized strings for the achievement name.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800555 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedStringBundle`.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800556 &quot;translations&quot;: [ # The locale strings.
557 { # A localized string resource.
558 &quot;value&quot;: &quot;A String&quot;, # The string value.
559 &quot;locale&quot;: &quot;A String&quot;, # The locale string.
560 &quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#localizedString`.
561 },
562 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800563 },
564 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800565 &quot;token&quot;: &quot;A String&quot;, # The token for this resource.
566 &quot;initialState&quot;: &quot;A String&quot;, # The initial state of the achievement.
567 &quot;id&quot;: &quot;A String&quot;, # The ID of the achievement.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800568 }</pre>
Craig Citroe633be12015-03-02 13:40:36 -0800569</div>
570
571</body></html>