blob: d6811d42243510a7bd83b188530c470b14526706 [file] [edit]
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="androidpublisher_v3.html">Google Play Android Developer API</a> . <a href="androidpublisher_v3.applications.html">applications</a> . <a href="androidpublisher_v3.applications.tracks.html">tracks</a> . <a href="androidpublisher_v3.applications.tracks.releases.html">releases</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#list">list(parent, x__xgafv=None)</a></code></p>
<p class="firstline">Returns the list of all releases for a given track. This excludes any releases that are obsolete.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, x__xgafv=None)</code>
<pre>Returns the list of all releases for a given track. This excludes any releases that are obsolete.
Args:
parent: string, Required. The parent track, which owns this collection of releases. Format: applications/{package_name}/tracks/{track} (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response listing all releases for a given track that are either ready to be sent for review, in review, approved, not approved or available.
&quot;releases&quot;: [ # List of releases for this track. A maximum of 20 releases can be returned.
{ # Summary of a release.
&quot;activeArtifacts&quot;: [ # List of active artifacts on this release
{ # Summary of an artifact.
&quot;versionCode&quot;: 42, # Artifact&#x27;s version code
},
],
&quot;releaseLifecycleState&quot;: &quot;A String&quot;, # The lifecycle state of a release.
&quot;releaseName&quot;: &quot;A String&quot;, # Name of the release.
&quot;track&quot;: &quot;A String&quot;, # Identifier for the track. [Learn more about track names.](https://developers.google.com/android-publisher/tracks).
},
],
}</pre>
</div>
</body></html>