Class
GetResponse
represents
the results of methods invoked to return information about documents and indexes.
GetResponse
is defined in the module
google.appengine.api.search
.
- Introduction
- Constructor
- Properties:
Introduction
A
GetResponse
object is returned from a call to either
index.get_range()
or
search.get_indexes()
.
You can iterate over an instance of
GetResponse
, which will return the members of its
results
property. The contents of the property
are determined by the type of call that created the instance of
GetResponse
.
For example, the following code shows how
GetResponse
could be used to
determine which documents were successfully deleted. In this case
the iteration returns
Documents