blob: 760e2eb4480745caeec3e2f42fba9a91a19e484a [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<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
Bu Sun Kimd059ad82020-07-22 17:02:09 -070075<h1><a href="androidpublisher_v3.html">Google Play Android Developer API</a> . <a href="androidpublisher_v3.edits.html">edits</a> . <a href="androidpublisher_v3.edits.testers.html">testers</a></h1>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070076<h2>Instance Methods</h2>
77<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070078 <code><a href="#get">get(packageName, editId, track, x__xgafv=None)</a></code></p>
79<p class="firstline">Gets testers.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070080<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070081 <code><a href="#patch">patch(packageName, editId, track, body=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Patches testers.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070083<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070084 <code><a href="#update">update(packageName, editId, track, body=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Updates testers.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070086<h3>Method Details</h3>
87<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070088 <code class="details" id="get">get(packageName, editId, track, x__xgafv=None)</code>
89 <pre>Gets testers.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070090
91Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -070092 packageName: string, Package name of the app. (required)
93 editId: string, Identifier of the edit. (required)
94 track: string, The track to read from. (required)
95 x__xgafv: string, V1 error format.
96 Allowed values
97 1 - v1 error format
98 2 - v2 error format
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070099
100Returns:
101 An object of the form:
102
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700103 { # The testers of an app. The resource for TestersService.
104 &quot;googleGroups&quot;: [ # All testing Google Groups, as email addresses.
105 &quot;A String&quot;,
106 ],
107 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700108</div>
109
110<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700111 <code class="details" id="patch">patch(packageName, editId, track, body=None, x__xgafv=None)</code>
112 <pre>Patches testers.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700113
114Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700115 packageName: string, Package name of the app. (required)
116 editId: string, Identifier of the edit. (required)
117 track: string, The track to update. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700118 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700119 The object takes the form of:
120
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700121{ # The testers of an app. The resource for TestersService.
122 &quot;googleGroups&quot;: [ # All testing Google Groups, as email addresses.
123 &quot;A String&quot;,
124 ],
125 }
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700126
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700127 x__xgafv: string, V1 error format.
128 Allowed values
129 1 - v1 error format
130 2 - v2 error format
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700131
132Returns:
133 An object of the form:
134
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700135 { # The testers of an app. The resource for TestersService.
136 &quot;googleGroups&quot;: [ # All testing Google Groups, as email addresses.
137 &quot;A String&quot;,
138 ],
139 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700140</div>
141
142<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700143 <code class="details" id="update">update(packageName, editId, track, body=None, x__xgafv=None)</code>
144 <pre>Updates testers.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700145
146Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700147 packageName: string, Package name of the app. (required)
148 editId: string, Identifier of the edit. (required)
149 track: string, The track to update. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700150 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700151 The object takes the form of:
152
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700153{ # The testers of an app. The resource for TestersService.
154 &quot;googleGroups&quot;: [ # All testing Google Groups, as email addresses.
155 &quot;A String&quot;,
156 ],
157 }
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700158
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700159 x__xgafv: string, V1 error format.
160 Allowed values
161 1 - v1 error format
162 2 - v2 error format
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700163
164Returns:
165 An object of the form:
166
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700167 { # The testers of an app. The resource for TestersService.
168 &quot;googleGroups&quot;: [ # All testing Google Groups, as email addresses.
169 &quot;A String&quot;,
170 ],
171 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700172</div>
173
174</body></html>