blob: 5aa748b33c2f5898d225addc9322585844ea09f0 [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
75<h1><a href="androidpublisher_v3.html">Google Play Developer API</a> . <a href="androidpublisher_v3.edits.html">edits</a> . <a href="androidpublisher_v3.edits.testers.html">testers</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(packageName, editId, track)</a></code></p>
79<p class="firstline">A description of how to use this function</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#patch">patch(packageName, editId, track, body=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070082<p class="firstline">A description of how to use this function</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#update">update(packageName, editId, track, body=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070085<p class="firstline">A description of how to use this function</p>
86<h3>Method Details</h3>
87<div class="method">
88 <code class="details" id="get">get(packageName, editId, track)</code>
89 <pre>A description of how to use this function
90
91Args:
92 packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
93 editId: string, Unique identifier for this edit. (required)
94 track: string, The track to read or modify. (required)
95
96Returns:
97 An object of the form:
98
99 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700100 "googleGroups": [ # A list of all Google Groups, as email addresses, that define testers for this track.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700101 "A String",
102 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700103 "autoEnrolledAndroidGroups": [
104 "A String",
105 ],
106 "autoEnrolledGoogleGroups": [
107 "A String",
108 ],
109 "excludedGoogleGroups": [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700110 "A String",
111 ],
112 }</pre>
113</div>
114
115<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700116 <code class="details" id="patch">patch(packageName, editId, track, body=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700117 <pre>A description of how to use this function
118
119Args:
120 packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
121 editId: string, Unique identifier for this edit. (required)
122 track: string, The track to read or modify. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700123 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700124 The object takes the form of:
125
126{
Dan O'Mearadd494642020-05-01 07:42:23 -0700127 "googleGroups": [ # A list of all Google Groups, as email addresses, that define testers for this track.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700128 "A String",
129 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700130 "autoEnrolledAndroidGroups": [
131 "A String",
132 ],
133 "autoEnrolledGoogleGroups": [
134 "A String",
135 ],
136 "excludedGoogleGroups": [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700137 "A String",
138 ],
139 }
140
141
142Returns:
143 An object of the form:
144
145 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700146 "googleGroups": [ # A list of all Google Groups, as email addresses, that define testers for this track.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700147 "A String",
148 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700149 "autoEnrolledAndroidGroups": [
150 "A String",
151 ],
152 "autoEnrolledGoogleGroups": [
153 "A String",
154 ],
155 "excludedGoogleGroups": [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700156 "A String",
157 ],
158 }</pre>
159</div>
160
161<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700162 <code class="details" id="update">update(packageName, editId, track, body=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700163 <pre>A description of how to use this function
164
165Args:
166 packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
167 editId: string, Unique identifier for this edit. (required)
168 track: string, The track to read or modify. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700169 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700170 The object takes the form of:
171
172{
Dan O'Mearadd494642020-05-01 07:42:23 -0700173 "googleGroups": [ # A list of all Google Groups, as email addresses, that define testers for this track.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700174 "A String",
175 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700176 "autoEnrolledAndroidGroups": [
177 "A String",
178 ],
179 "autoEnrolledGoogleGroups": [
180 "A String",
181 ],
182 "excludedGoogleGroups": [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700183 "A String",
184 ],
185 }
186
187
188Returns:
189 An object of the form:
190
191 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700192 "googleGroups": [ # A list of all Google Groups, as email addresses, that define testers for this track.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700193 "A String",
194 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700195 "autoEnrolledAndroidGroups": [
196 "A String",
197 ],
198 "autoEnrolledGoogleGroups": [
199 "A String",
200 ],
201 "excludedGoogleGroups": [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700202 "A String",
203 ],
204 }</pre>
205</div>
206
207</body></html>