Google Play Android Developer API . applications . tracks . releases

Instance Methods

close()

Close httplib2 connections.

list(parent, x__xgafv=None)

Returns the list of all releases for a given track. This excludes any releases that are obsolete.

Method Details

close()
Close httplib2 connections.
list(parent, x__xgafv=None)
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.
  "releases": [ # List of releases for this track. A maximum of 20 releases can be returned.
    { # Summary of a release.
      "activeArtifacts": [ # List of active artifacts on this release
        { # Summary of an artifact.
          "versionCode": 42, # Artifact's version code
        },
      ],
      "releaseLifecycleState": "A String", # The lifecycle state of a release.
      "releaseName": "A String", # Name of the release.
      "track": "A String", # Identifier for the track. [Learn more about track names.](https://developers.google.com/android-publisher/tracks).
    },
  ],
}