blob: 91ffdccdafeed2227923d4dac5372d773861c7c7 [file] [log] [blame]
Joe Gregorio075572b2012-07-09 16:53:09 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="plus_v1.html">Google+ API</a> . <a href="plus_v1.people.html">people</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(userId)</a></code></p>
79<p class="firstline">Get a person's profile.</p>
80<p class="toc_element">
81 <code><a href="#listByActivity">listByActivity(activityId, collection, pageToken=None, maxResults=None)</a></code></p>
82<p class="firstline">List all of the people in the specified collection for a particular activity.</p>
83<p class="toc_element">
84 <code><a href="#listByActivity_next">listByActivity_next(previous_request, previous_response)</a></code></p>
85<p class="firstline">Retrieves the next page of results.</p>
86<p class="toc_element">
87 <code><a href="#search">search(query, pageToken=None, language=None, maxResults=None)</a></code></p>
88<p class="firstline">Search all public profiles.</p>
89<p class="toc_element">
90 <code><a href="#search_next">search_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<h3>Method Details</h3>
93<div class="method">
94 <code class="details" id="get">get(userId)</code>
95 <pre>Get a person's profile.
96
97Args:
98 userId: string, The ID of the person to get the profile for. The special value "me" can be used to indicate the authenticated user. (required)
99
100Returns:
101 An object of the form:
102
103 {
Joe Gregorio52a5c532013-01-24 16:19:07 -0500104 "braggingRights": "A String", # The "bragging rights" line of this person.
105 "image": { # The representation of the person's profile photo.
106 "url": "A String", # The URL of the person's profile photo. To re-size the image and crop it to a square, append the query string ?sz=x, where x is the dimension in pixels of each side.
107 },
108 "hasApp": True or False, # If "true", indicates that the person has installed the app that is making the request and has chosen to expose this install state to the caller. A value of "false" indicates that the install state cannot be determined (it is either not installed or the person has chosen to keep this information private).
109 "id": "A String", # The ID of this person.
110 "objectType": "A String", # Type of person within Google+. Possible values are:
111 # - "person" - represents an actual person.
112 # - "page" - represents a page.
113 "verified": True or False, # Whether the person or Google+ Page has been verified.
114 "tagline": "A String", # The brief description (tagline) of this person.
115 "currentLocation": "A String", # The current location for this person.
116 "etag": "A String", # ETag of this response for caching purposes.
117 "circledByCount": 42, # If a Google+ Page and for followers who are visible, the number of people who have added this page to a circle.
118 "aboutMe": "A String", # A short biography for this person.
119 "kind": "plus#person", # Identifies this resource as a person. Value: "plus#person".
120 "placesLived": [ # A list of places where this person has lived.
121 {
122 "primary": True or False, # If "true", this place of residence is this person's primary residence.
123 "value": "A String", # A place where this person has lived. For example: "Seattle, WA", "Near Toronto".
124 },
125 ],
126 "birthday": "A String", # The person's date of birth, represented as YYYY-MM-DD.
127 "nickname": "A String", # The nickname of this person.
128 "emails": [ # A list of email addresses for this person.
129 {
130 "type": "A String", # The type of address. Possible values are:
131 # - "home" - Home email address.
132 # - "work" - Work email address.
133 # - "other" - Other.
134 "primary": True or False, # If "true", indicates this email address is the person's primary one.
135 "value": "A String", # The email address.
136 },
137 ],
Joe Gregorio075572b2012-07-09 16:53:09 -0400138 "organizations": [ # A list of current or past organizations with which this person is associated.
139 {
140 "startDate": "A String", # The date the person joined this organization.
141 "endDate": "A String", # The date the person left this organization.
142 "description": "A String", # A short description of the person's role in this organization. Deprecated.
143 "title": "A String", # The person's job title or role within the organization.
144 "primary": True or False, # If "true", indicates this organization is the person's primary one (typically interpreted as current one).
145 "location": "A String", # The location of this organization. Deprecated.
146 "department": "A String", # The department within the organization. Deprecated.
147 "type": "A String", # The type of organization. Possible values are:
148 # - "work" - Work.
149 # - "school" - School.
150 "name": "A String", # The name of the organization.
151 },
152 ],
Joe Gregorio52a5c532013-01-24 16:19:07 -0500153 "relationshipStatus": "A String", # The person's relationship status. Possible values are:
154 # - "single" - Person is single.
155 # - "in_a_relationship" - Person is in a relationship.
156 # - "engaged" - Person is engaged.
157 # - "married" - Person is married.
158 # - "its_complicated" - The relationship is complicated.
159 # - "open_relationship" - Person is in an open relationship.
160 # - "widowed" - Person is widowed.
161 # - "in_domestic_partnership" - Person is in a domestic partnership.
162 # - "in_civil_union" - Person is in a civil union.
Joe Gregorio075572b2012-07-09 16:53:09 -0400163 "displayName": "A String", # The name of this person, suitable for display.
164 "name": { # An object representation of the individual components of a person's name.
165 "honorificPrefix": "A String", # The honorific prefixes (such as "Dr." or "Mrs.") for this person.
166 "middleName": "A String", # The middle name of this person.
167 "familyName": "A String", # The family name (last name) of this person.
168 "formatted": "A String", # The full name of this person, including middle names, suffixes, etc.
169 "givenName": "A String", # The given name (first name) of this person.
170 "honorificSuffix": "A String", # The honorific suffixes (such as "Jr.") for this person.
171 },
172 "url": "A String", # The URL of this person's profile.
173 "gender": "A String", # The person's gender. Possible values are:
174 # - "male" - Male gender.
175 # - "female" - Female gender.
176 # - "other" - Other.
Joe Gregorio52a5c532013-01-24 16:19:07 -0500177 "cover": { # The cover photo content.
178 "layout": "A String", # The layout of the cover art. Possible values are:
179 # - "banner" - One large image banner.
180 "coverInfo": { # Extra information about the cover photo.
181 "leftImageOffset": 42, # The difference between the left position of the image cover and the actual displayed cover image. Only valid for BANNER layout.
182 "topImageOffset": 42, # The difference between the top position of the image cover and the actual displayed cover image. Only valid for BANNER layout.
Joe Gregorio075572b2012-07-09 16:53:09 -0400183 },
Joe Gregorio52a5c532013-01-24 16:19:07 -0500184 "coverPhoto": { # The person's primary cover image.
185 "url": "A String", # The url to the image.
186 "width": 42, # The width to the image.
187 "height": 42, # The height to the image.
Joe Gregorio075572b2012-07-09 16:53:09 -0400188 },
Joe Gregorio52a5c532013-01-24 16:19:07 -0500189 },
190 "isPlusUser": True or False, # Whether this user has signed up for Google+.
191 "plusOneCount": 42, # If a Google+ Page, the number of people who have +1'ed this page.
Joe Gregorio075572b2012-07-09 16:53:09 -0400192 "urls": [ # A list of URLs for this person.
193 {
194 "type": "A String", # The type of URL. Possible values are:
195 # - "home" - URL for home.
196 # - "work" - URL for work.
197 # - "blog" - URL for blog.
198 # - "profile" - URL for profile.
199 # - "other" - Other.
200 "primary": True or False, # If "true", this URL is the person's primary URL.
201 "value": "A String", # The URL value.
202 },
203 ],
Joe Gregorio075572b2012-07-09 16:53:09 -0400204 }</pre>
205</div>
206
207<div class="method">
208 <code class="details" id="listByActivity">listByActivity(activityId, collection, pageToken=None, maxResults=None)</code>
209 <pre>List all of the people in the specified collection for a particular activity.
210
211Args:
212 activityId: string, The ID of the activity to get the list of people for. (required)
213 collection: string, The collection of people to list. (required)
214 Allowed values
215 plusoners - List all people who have +1'd this activity.
216 resharers - List all people who have reshared this activity.
Joe Gregoriod67010d2012-11-05 08:57:06 -0500217 pageToken: string, The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response.
218 maxResults: integer, The maximum number of people to include in the response, which is used for paging. For any response, the actual number returned might be less than the specified maxResults.
Joe Gregorio075572b2012-07-09 16:53:09 -0400219
220Returns:
221 An object of the form:
222
223 {
Joe Gregoriod67010d2012-11-05 08:57:06 -0500224 "nextPageToken": "A String", # The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
Joe Gregorio075572b2012-07-09 16:53:09 -0400225 "kind": "plus#peopleFeed", # Identifies this resource as a collection of people. Value: "plus#peopleFeed".
226 "title": "A String", # The title of this collection of people.
Joe Gregoriod67010d2012-11-05 08:57:06 -0500227 "items": [ # The people in this page of results. Each item includes the id, displayName, image, and url for the person. To retrieve additional profile data, see the people.get method.
Joe Gregorio075572b2012-07-09 16:53:09 -0400228 {
Joe Gregorio52a5c532013-01-24 16:19:07 -0500229 "braggingRights": "A String", # The "bragging rights" line of this person.
230 "image": { # The representation of the person's profile photo.
231 "url": "A String", # The URL of the person's profile photo. To re-size the image and crop it to a square, append the query string ?sz=x, where x is the dimension in pixels of each side.
232 },
233 "hasApp": True or False, # If "true", indicates that the person has installed the app that is making the request and has chosen to expose this install state to the caller. A value of "false" indicates that the install state cannot be determined (it is either not installed or the person has chosen to keep this information private).
234 "id": "A String", # The ID of this person.
235 "objectType": "A String", # Type of person within Google+. Possible values are:
236 # - "person" - represents an actual person.
237 # - "page" - represents a page.
238 "verified": True or False, # Whether the person or Google+ Page has been verified.
239 "tagline": "A String", # The brief description (tagline) of this person.
240 "currentLocation": "A String", # The current location for this person.
241 "etag": "A String", # ETag of this response for caching purposes.
242 "circledByCount": 42, # If a Google+ Page and for followers who are visible, the number of people who have added this page to a circle.
243 "aboutMe": "A String", # A short biography for this person.
244 "kind": "plus#person", # Identifies this resource as a person. Value: "plus#person".
245 "placesLived": [ # A list of places where this person has lived.
246 {
247 "primary": True or False, # If "true", this place of residence is this person's primary residence.
248 "value": "A String", # A place where this person has lived. For example: "Seattle, WA", "Near Toronto".
249 },
250 ],
251 "birthday": "A String", # The person's date of birth, represented as YYYY-MM-DD.
252 "nickname": "A String", # The nickname of this person.
253 "emails": [ # A list of email addresses for this person.
254 {
255 "type": "A String", # The type of address. Possible values are:
256 # - "home" - Home email address.
257 # - "work" - Work email address.
258 # - "other" - Other.
259 "primary": True or False, # If "true", indicates this email address is the person's primary one.
260 "value": "A String", # The email address.
261 },
262 ],
Joe Gregorio075572b2012-07-09 16:53:09 -0400263 "organizations": [ # A list of current or past organizations with which this person is associated.
264 {
265 "startDate": "A String", # The date the person joined this organization.
266 "endDate": "A String", # The date the person left this organization.
267 "description": "A String", # A short description of the person's role in this organization. Deprecated.
268 "title": "A String", # The person's job title or role within the organization.
269 "primary": True or False, # If "true", indicates this organization is the person's primary one (typically interpreted as current one).
270 "location": "A String", # The location of this organization. Deprecated.
271 "department": "A String", # The department within the organization. Deprecated.
272 "type": "A String", # The type of organization. Possible values are:
273 # - "work" - Work.
274 # - "school" - School.
275 "name": "A String", # The name of the organization.
276 },
277 ],
Joe Gregorio52a5c532013-01-24 16:19:07 -0500278 "relationshipStatus": "A String", # The person's relationship status. Possible values are:
279 # - "single" - Person is single.
280 # - "in_a_relationship" - Person is in a relationship.
281 # - "engaged" - Person is engaged.
282 # - "married" - Person is married.
283 # - "its_complicated" - The relationship is complicated.
284 # - "open_relationship" - Person is in an open relationship.
285 # - "widowed" - Person is widowed.
286 # - "in_domestic_partnership" - Person is in a domestic partnership.
287 # - "in_civil_union" - Person is in a civil union.
Joe Gregorio075572b2012-07-09 16:53:09 -0400288 "displayName": "A String", # The name of this person, suitable for display.
289 "name": { # An object representation of the individual components of a person's name.
290 "honorificPrefix": "A String", # The honorific prefixes (such as "Dr." or "Mrs.") for this person.
291 "middleName": "A String", # The middle name of this person.
292 "familyName": "A String", # The family name (last name) of this person.
293 "formatted": "A String", # The full name of this person, including middle names, suffixes, etc.
294 "givenName": "A String", # The given name (first name) of this person.
295 "honorificSuffix": "A String", # The honorific suffixes (such as "Jr.") for this person.
296 },
297 "url": "A String", # The URL of this person's profile.
298 "gender": "A String", # The person's gender. Possible values are:
299 # - "male" - Male gender.
300 # - "female" - Female gender.
301 # - "other" - Other.
Joe Gregorio52a5c532013-01-24 16:19:07 -0500302 "cover": { # The cover photo content.
303 "layout": "A String", # The layout of the cover art. Possible values are:
304 # - "banner" - One large image banner.
305 "coverInfo": { # Extra information about the cover photo.
306 "leftImageOffset": 42, # The difference between the left position of the image cover and the actual displayed cover image. Only valid for BANNER layout.
307 "topImageOffset": 42, # The difference between the top position of the image cover and the actual displayed cover image. Only valid for BANNER layout.
Joe Gregorio075572b2012-07-09 16:53:09 -0400308 },
Joe Gregorio52a5c532013-01-24 16:19:07 -0500309 "coverPhoto": { # The person's primary cover image.
310 "url": "A String", # The url to the image.
311 "width": 42, # The width to the image.
312 "height": 42, # The height to the image.
Joe Gregorio075572b2012-07-09 16:53:09 -0400313 },
Joe Gregorio52a5c532013-01-24 16:19:07 -0500314 },
315 "isPlusUser": True or False, # Whether this user has signed up for Google+.
316 "plusOneCount": 42, # If a Google+ Page, the number of people who have +1'ed this page.
Joe Gregorio075572b2012-07-09 16:53:09 -0400317 "urls": [ # A list of URLs for this person.
318 {
319 "type": "A String", # The type of URL. Possible values are:
320 # - "home" - URL for home.
321 # - "work" - URL for work.
322 # - "blog" - URL for blog.
323 # - "profile" - URL for profile.
324 # - "other" - Other.
325 "primary": True or False, # If "true", this URL is the person's primary URL.
326 "value": "A String", # The URL value.
327 },
328 ],
Joe Gregorio075572b2012-07-09 16:53:09 -0400329 },
330 ],
331 "etag": "A String", # ETag of this response for caching purposes.
Joe Gregoriod67010d2012-11-05 08:57:06 -0500332 "totalItems": 42, # The total number of people available in this list. The number of people in a response might be smaller due to paging. This might not be set for all collections.
Joe Gregorio075572b2012-07-09 16:53:09 -0400333 "selfLink": "A String", # Link to this resource.
334 }</pre>
335</div>
336
337<div class="method">
338 <code class="details" id="listByActivity_next">listByActivity_next(previous_request, previous_response)</code>
339 <pre>Retrieves the next page of results.
340
341Args:
342 previous_request: The request for the previous page. (required)
343 previous_response: The response from the request for the previous page. (required)
344
345Returns:
346 A request object that you can call 'execute()' on to request the next
347 page. Returns None if there are no more items in the collection.
Joe Gregorio52a5c532013-01-24 16:19:07 -0500348 </pre>
Joe Gregorio075572b2012-07-09 16:53:09 -0400349</div>
350
351<div class="method">
352 <code class="details" id="search">search(query, pageToken=None, language=None, maxResults=None)</code>
353 <pre>Search all public profiles.
354
355Args:
356 query: string, Specify a query string for full text search of public text in all profiles. (required)
Joe Gregoriod67010d2012-11-05 08:57:06 -0500357 pageToken: string, The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response. This token can be of any length.
Joe Gregorio075572b2012-07-09 16:53:09 -0400358 language: string, Specify the preferred language to search with. See search language codes for available values.
Joe Gregoriod67010d2012-11-05 08:57:06 -0500359 maxResults: integer, The maximum number of people to include in the response, which is used for paging. For any response, the actual number returned might be less than the specified maxResults.
Joe Gregorio075572b2012-07-09 16:53:09 -0400360
361Returns:
362 An object of the form:
363
364 {
Joe Gregoriod67010d2012-11-05 08:57:06 -0500365 "nextPageToken": "A String", # The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
Joe Gregorio075572b2012-07-09 16:53:09 -0400366 "kind": "plus#peopleFeed", # Identifies this resource as a collection of people. Value: "plus#peopleFeed".
367 "title": "A String", # The title of this collection of people.
Joe Gregoriod67010d2012-11-05 08:57:06 -0500368 "items": [ # The people in this page of results. Each item includes the id, displayName, image, and url for the person. To retrieve additional profile data, see the people.get method.
Joe Gregorio075572b2012-07-09 16:53:09 -0400369 {
Joe Gregorio52a5c532013-01-24 16:19:07 -0500370 "braggingRights": "A String", # The "bragging rights" line of this person.
371 "image": { # The representation of the person's profile photo.
372 "url": "A String", # The URL of the person's profile photo. To re-size the image and crop it to a square, append the query string ?sz=x, where x is the dimension in pixels of each side.
373 },
374 "hasApp": True or False, # If "true", indicates that the person has installed the app that is making the request and has chosen to expose this install state to the caller. A value of "false" indicates that the install state cannot be determined (it is either not installed or the person has chosen to keep this information private).
375 "id": "A String", # The ID of this person.
376 "objectType": "A String", # Type of person within Google+. Possible values are:
377 # - "person" - represents an actual person.
378 # - "page" - represents a page.
379 "verified": True or False, # Whether the person or Google+ Page has been verified.
380 "tagline": "A String", # The brief description (tagline) of this person.
381 "currentLocation": "A String", # The current location for this person.
382 "etag": "A String", # ETag of this response for caching purposes.
383 "circledByCount": 42, # If a Google+ Page and for followers who are visible, the number of people who have added this page to a circle.
384 "aboutMe": "A String", # A short biography for this person.
385 "kind": "plus#person", # Identifies this resource as a person. Value: "plus#person".
386 "placesLived": [ # A list of places where this person has lived.
387 {
388 "primary": True or False, # If "true", this place of residence is this person's primary residence.
389 "value": "A String", # A place where this person has lived. For example: "Seattle, WA", "Near Toronto".
390 },
391 ],
392 "birthday": "A String", # The person's date of birth, represented as YYYY-MM-DD.
393 "nickname": "A String", # The nickname of this person.
394 "emails": [ # A list of email addresses for this person.
395 {
396 "type": "A String", # The type of address. Possible values are:
397 # - "home" - Home email address.
398 # - "work" - Work email address.
399 # - "other" - Other.
400 "primary": True or False, # If "true", indicates this email address is the person's primary one.
401 "value": "A String", # The email address.
402 },
403 ],
Joe Gregorio075572b2012-07-09 16:53:09 -0400404 "organizations": [ # A list of current or past organizations with which this person is associated.
405 {
406 "startDate": "A String", # The date the person joined this organization.
407 "endDate": "A String", # The date the person left this organization.
408 "description": "A String", # A short description of the person's role in this organization. Deprecated.
409 "title": "A String", # The person's job title or role within the organization.
410 "primary": True or False, # If "true", indicates this organization is the person's primary one (typically interpreted as current one).
411 "location": "A String", # The location of this organization. Deprecated.
412 "department": "A String", # The department within the organization. Deprecated.
413 "type": "A String", # The type of organization. Possible values are:
414 # - "work" - Work.
415 # - "school" - School.
416 "name": "A String", # The name of the organization.
417 },
418 ],
Joe Gregorio52a5c532013-01-24 16:19:07 -0500419 "relationshipStatus": "A String", # The person's relationship status. Possible values are:
420 # - "single" - Person is single.
421 # - "in_a_relationship" - Person is in a relationship.
422 # - "engaged" - Person is engaged.
423 # - "married" - Person is married.
424 # - "its_complicated" - The relationship is complicated.
425 # - "open_relationship" - Person is in an open relationship.
426 # - "widowed" - Person is widowed.
427 # - "in_domestic_partnership" - Person is in a domestic partnership.
428 # - "in_civil_union" - Person is in a civil union.
Joe Gregorio075572b2012-07-09 16:53:09 -0400429 "displayName": "A String", # The name of this person, suitable for display.
430 "name": { # An object representation of the individual components of a person's name.
431 "honorificPrefix": "A String", # The honorific prefixes (such as "Dr." or "Mrs.") for this person.
432 "middleName": "A String", # The middle name of this person.
433 "familyName": "A String", # The family name (last name) of this person.
434 "formatted": "A String", # The full name of this person, including middle names, suffixes, etc.
435 "givenName": "A String", # The given name (first name) of this person.
436 "honorificSuffix": "A String", # The honorific suffixes (such as "Jr.") for this person.
437 },
438 "url": "A String", # The URL of this person's profile.
439 "gender": "A String", # The person's gender. Possible values are:
440 # - "male" - Male gender.
441 # - "female" - Female gender.
442 # - "other" - Other.
Joe Gregorio52a5c532013-01-24 16:19:07 -0500443 "cover": { # The cover photo content.
444 "layout": "A String", # The layout of the cover art. Possible values are:
445 # - "banner" - One large image banner.
446 "coverInfo": { # Extra information about the cover photo.
447 "leftImageOffset": 42, # The difference between the left position of the image cover and the actual displayed cover image. Only valid for BANNER layout.
448 "topImageOffset": 42, # The difference between the top position of the image cover and the actual displayed cover image. Only valid for BANNER layout.
Joe Gregorio075572b2012-07-09 16:53:09 -0400449 },
Joe Gregorio52a5c532013-01-24 16:19:07 -0500450 "coverPhoto": { # The person's primary cover image.
451 "url": "A String", # The url to the image.
452 "width": 42, # The width to the image.
453 "height": 42, # The height to the image.
Joe Gregorio075572b2012-07-09 16:53:09 -0400454 },
Joe Gregorio52a5c532013-01-24 16:19:07 -0500455 },
456 "isPlusUser": True or False, # Whether this user has signed up for Google+.
457 "plusOneCount": 42, # If a Google+ Page, the number of people who have +1'ed this page.
Joe Gregorio075572b2012-07-09 16:53:09 -0400458 "urls": [ # A list of URLs for this person.
459 {
460 "type": "A String", # The type of URL. Possible values are:
461 # - "home" - URL for home.
462 # - "work" - URL for work.
463 # - "blog" - URL for blog.
464 # - "profile" - URL for profile.
465 # - "other" - Other.
466 "primary": True or False, # If "true", this URL is the person's primary URL.
467 "value": "A String", # The URL value.
468 },
469 ],
Joe Gregorio075572b2012-07-09 16:53:09 -0400470 },
471 ],
472 "etag": "A String", # ETag of this response for caching purposes.
Joe Gregoriod67010d2012-11-05 08:57:06 -0500473 "totalItems": 42, # The total number of people available in this list. The number of people in a response might be smaller due to paging. This might not be set for all collections.
Joe Gregorio075572b2012-07-09 16:53:09 -0400474 "selfLink": "A String", # Link to this resource.
475 }</pre>
476</div>
477
478<div class="method">
479 <code class="details" id="search_next">search_next(previous_request, previous_response)</code>
480 <pre>Retrieves the next page of results.
481
482Args:
483 previous_request: The request for the previous page. (required)
484 previous_response: The response from the request for the previous page. (required)
485
486Returns:
487 A request object that you can call 'execute()' on to request the next
488 page. Returns None if there are no more items in the collection.
Joe Gregorio52a5c532013-01-24 16:19:07 -0500489 </pre>
Joe Gregorio075572b2012-07-09 16:53:09 -0400490</div>
491
492</body></html>