Google Play Android Developer API . appstorecatalog . recentupdateevents

Instance Methods

close()

Close httplib2 connections.

list(appStorePackageName, endTime=None, pageSize=None, pageToken=None, startTime=None, x__xgafv=None)

Lists update events for eligible apps in the given time range.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
list(appStorePackageName, endTime=None, pageSize=None, pageToken=None, startTime=None, x__xgafv=None)
Lists update events for eligible apps in the given time range.

Args:
  appStorePackageName: string, Required. The package name of the app store on behalf of which the request is made. (required)
  endTime: string, Required. The end time of the range (exclusive).
  pageSize: integer, Optional. The maximum number of update events to return. The service may return fewer than this value. If unspecified, at most 100 update events will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
  pageToken: string, Optional. A page token, received from a previous `ListRecentUpdateEvents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListRecentUpdateEvents` must match the call that provided the page token.
  startTime: string, Required. The start time of the range (inclusive).
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for ListRecentUpdateEvents.
  "nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
  "recentUpdateEvents": [ # The list of recent update events.
    { # A recent update event.
      "eventTime": "A String", # The timestamp of the update.
      "playAppPackageName": "A String", # The package name of the app.
      "updateType": "A String", # The type of the update event.
    },
  ],
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.