• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5  margin: 0;
6  padding: 0;
7  border: 0;
8  font-weight: inherit;
9  font-style: inherit;
10  font-size: 100%;
11  font-family: inherit;
12  vertical-align: baseline;
13}
14
15body {
16  font-size: 13px;
17  padding: 1em;
18}
19
20h1 {
21  font-size: 26px;
22  margin-bottom: 1em;
23}
24
25h2 {
26  font-size: 24px;
27  margin-bottom: 1em;
28}
29
30h3 {
31  font-size: 20px;
32  margin-bottom: 1em;
33  margin-top: 1em;
34}
35
36pre, code {
37  line-height: 1.5;
38  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42  margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46  font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50  border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54  margin-top: 0.5em;
55}
56
57.firstline {
58  margin-left: 2 em;
59}
60
61.method  {
62  margin-top: 1em;
63  border: solid 1px #CCC;
64  padding: 1em;
65  background: #EEE;
66}
67
68.details {
69  font-weight: bold;
70  font-size: 14px;
71}
72
73</style>
74
75<h1><a href="androidpublisher_v2.html">Google Play Developer API</a> . <a href="androidpublisher_v2.edits.html">edits</a> . <a href="androidpublisher_v2.edits.listings.html">listings</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#delete">delete(packageName, editId, language)</a></code></p>
79<p class="firstline">Deletes the specified localized store listing from an edit.</p>
80<p class="toc_element">
81  <code><a href="#deleteall">deleteall(packageName, editId)</a></code></p>
82<p class="firstline">Deletes all localized listings from an edit.</p>
83<p class="toc_element">
84  <code><a href="#get">get(packageName, editId, language)</a></code></p>
85<p class="firstline">Fetches information about a localized store listing.</p>
86<p class="toc_element">
87  <code><a href="#list">list(packageName, editId)</a></code></p>
88<p class="firstline">Returns all of the localized store listings attached to this edit.</p>
89<p class="toc_element">
90  <code><a href="#patch">patch(packageName, editId, language, body)</a></code></p>
91<p class="firstline">Creates or updates a localized store listing. This method supports patch semantics.</p>
92<p class="toc_element">
93  <code><a href="#update">update(packageName, editId, language, body)</a></code></p>
94<p class="firstline">Creates or updates a localized store listing.</p>
95<h3>Method Details</h3>
96<div class="method">
97    <code class="details" id="delete">delete(packageName, editId, language)</code>
98  <pre>Deletes the specified localized store listing from an edit.
99
100Args:
101  packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
102  editId: string, Unique identifier for this edit. (required)
103  language: string, The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
104</pre>
105</div>
106
107<div class="method">
108    <code class="details" id="deleteall">deleteall(packageName, editId)</code>
109  <pre>Deletes all localized listings from an edit.
110
111Args:
112  packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
113  editId: string, Unique identifier for this edit. (required)
114</pre>
115</div>
116
117<div class="method">
118    <code class="details" id="get">get(packageName, editId, language)</code>
119  <pre>Fetches information about a localized store listing.
120
121Args:
122  packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
123  editId: string, Unique identifier for this edit. (required)
124  language: string, The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
125
126Returns:
127  An object of the form:
128
129    {
130    "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length.
131    "video": "A String", # URL of a promotional YouTube video for the app.
132    "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length.
133    "language": "A String", # Language localization code (for example, "de-AT" for Austrian German).
134    "title": "A String", # App's localized title.
135  }</pre>
136</div>
137
138<div class="method">
139    <code class="details" id="list">list(packageName, editId)</code>
140  <pre>Returns all of the localized store listings attached to this edit.
141
142Args:
143  packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
144  editId: string, Unique identifier for this edit. (required)
145
146Returns:
147  An object of the form:
148
149    {
150    "kind": "androidpublisher#listingsListResponse", # Identifies what kind of resource this is. Value: the fixed string "androidpublisher#listingsListResponse".
151    "listings": [
152      {
153        "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length.
154        "video": "A String", # URL of a promotional YouTube video for the app.
155        "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length.
156        "language": "A String", # Language localization code (for example, "de-AT" for Austrian German).
157        "title": "A String", # App's localized title.
158      },
159    ],
160  }</pre>
161</div>
162
163<div class="method">
164    <code class="details" id="patch">patch(packageName, editId, language, body)</code>
165  <pre>Creates or updates a localized store listing. This method supports patch semantics.
166
167Args:
168  packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
169  editId: string, Unique identifier for this edit. (required)
170  language: string, The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
171  body: object, The request body. (required)
172    The object takes the form of:
173
174{
175  "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length.
176  "video": "A String", # URL of a promotional YouTube video for the app.
177  "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length.
178  "language": "A String", # Language localization code (for example, "de-AT" for Austrian German).
179  "title": "A String", # App's localized title.
180}
181
182
183Returns:
184  An object of the form:
185
186    {
187    "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length.
188    "video": "A String", # URL of a promotional YouTube video for the app.
189    "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length.
190    "language": "A String", # Language localization code (for example, "de-AT" for Austrian German).
191    "title": "A String", # App's localized title.
192  }</pre>
193</div>
194
195<div class="method">
196    <code class="details" id="update">update(packageName, editId, language, body)</code>
197  <pre>Creates or updates a localized store listing.
198
199Args:
200  packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
201  editId: string, Unique identifier for this edit. (required)
202  language: string, The language code (a BCP-47 language tag) of the localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
203  body: object, The request body. (required)
204    The object takes the form of:
205
206{
207  "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length.
208  "video": "A String", # URL of a promotional YouTube video for the app.
209  "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length.
210  "language": "A String", # Language localization code (for example, "de-AT" for Austrian German).
211  "title": "A String", # App's localized title.
212}
213
214
215Returns:
216  An object of the form:
217
218    {
219    "shortDescription": "A String", # Short description of the app (previously known as promo text); this may be up to 80 characters in length.
220    "video": "A String", # URL of a promotional YouTube video for the app.
221    "fullDescription": "A String", # Full description of the app; this may be up to 4000 characters in length.
222    "language": "A String", # Language localization code (for example, "de-AT" for Austrian German).
223    "title": "A String", # App's localized title.
224  }</pre>
225</div>
226
227</body></html>