Google Play Android Developer API . edits . countryavailability

Instance Methods

close()

Close httplib2 connections.

get(packageName, editId, track, x__xgafv=None)

Gets country availability.

Method Details

close()
Close httplib2 connections.
get(packageName, editId, track, x__xgafv=None)
Gets country availability.

Args:
  packageName: string, Package name of the app. (required)
  editId: string, Identifier of the edit. (required)
  track: string, The track to read from. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Resource for per-track country availability information.
  "countries": [ # A list of one or more countries where artifacts in this track are available. This list includes all countries that are targeted by the track, even if only specific carriers are targeted in that country.
    { # Representation of a single country where the contents of a track are available.
      "countryCode": "A String", # The country to target, as a two-letter CLDR code.
    },
  ],
  "restOfWorld": True or False, # Whether artifacts in this track are available to "rest of the world" countries.
  "syncWithProduction": True or False, # Whether this track's availability is synced with the default production track. See https://support.google.com/googleplay/android-developer/answer/7550024 for more information on syncing country availability with production. Note that if this is true, the returned "countries" and "rest_of_world" fields will reflect the values for the default production track.
}