blob: d978b035d9aea3c667da11913fc8806917988462 [file] [log] [blame]
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -08001<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
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070075<h1><a href="people_v1.html">People API</a> . <a href="people_v1.people.html">people</a> . <a href="people_v1.people.connections.html">connections</a></h1>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080076<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -080081 <code><a href="#list">list(resourceName, pageSize=None, requestSyncToken=None, requestMask_includeField=None, sources=None, syncToken=None, personFields=None, pageToken=None, sortOrder=None, x__xgafv=None)</a></code></p>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070082<p class="firstline">Provides a list of the authenticated user's contacts. The request returns a 400 error if `personFields` is not specified. The request returns a 410 error if `sync_token` is specified and is expired. Sync tokens expire after 7 days. A request without `sync_token` should be made and all contacts should be synced.</p>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080083<p class="toc_element">
84 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
85<p class="firstline">Retrieves the next page of results.</p>
86<h3>Method Details</h3>
87<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070088 <code class="details" id="close">close()</code>
89 <pre>Close httplib2 connections.</pre>
90</div>
91
92<div class="method">
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -080093 <code class="details" id="list">list(resourceName, pageSize=None, requestSyncToken=None, requestMask_includeField=None, sources=None, syncToken=None, personFields=None, pageToken=None, sortOrder=None, x__xgafv=None)</code>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070094 <pre>Provides a list of the authenticated user&#x27;s contacts. The request returns a 400 error if `personFields` is not specified. The request returns a 410 error if `sync_token` is specified and is expired. Sync tokens expire after 7 days. A request without `sync_token` should be made and all contacts should be synced.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080095
96Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070097 resourceName: string, Required. The resource name to return connections for. Only `people/me` is valid. (required)
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -080098 pageSize: integer, Optional. The number of connections to include in the response. Valid values are between 1 and 1000, inclusive. Defaults to 100 if not set or set to 0.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -080099 requestSyncToken: boolean, Optional. Whether the response should include `next_sync_token` on the last page, which can be used to get all changes since the last request. For subsequent sync requests use the `sync_token` param instead. Initial sync requests that specify `request_sync_token` have an additional rate limit.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800100 requestMask_includeField: string, Required. Comma-separated list of person fields to be included in the response. Each path should start with `person.`: for example, `person.names` or `person.photos`.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800101 sources: string, Optional. A mask of what source types to return. Defaults to READ_SOURCE_TYPE_CONTACT and READ_SOURCE_TYPE_PROFILE if not set. (repeated)
102 Allowed values
103 READ_SOURCE_TYPE_UNSPECIFIED - Unspecified.
104 READ_SOURCE_TYPE_PROFILE - Returns SourceType.ACCOUNT, SourceType.DOMAIN_PROFILE, and SourceType.PROFILE.
105 READ_SOURCE_TYPE_CONTACT - Returns SourceType.CONTACT.
106 READ_SOURCE_TYPE_DOMAIN_CONTACT - Returns SourceType.DOMAIN_CONTACT.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800107 syncToken: string, Optional. A sync token, received from a previous `ListConnections` call. Provide this to retrieve only the resources changed since the last request. Sync requests that specify `sync_token` have an additional rate limit. When syncing, all other parameters provided to `ListConnections` must match the call that provided the sync token.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800108 personFields: string, Required. A field mask to restrict which fields on each person are returned. Multiple fields can be specified by separating them with commas. Valid values are: * addresses * ageRanges * biographies * birthdays * calendarUrls * clientData * coverPhotos * emailAddresses * events * externalIds * genders * imClients * interests * locales * locations * memberships * metadata * miscKeywords * names * nicknames * occupations * organizations * phoneNumbers * photos * relations * sipAddresses * skills * urls * userDefined
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800109 pageToken: string, Optional. A page token, received from a previous `ListConnections` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListConnections` must match the call that provided the page token.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800110 sortOrder: string, Optional. The order in which the connections should be sorted. Defaults to `LAST_MODIFIED_ASCENDING`.
111 Allowed values
112 LAST_MODIFIED_ASCENDING - Sort people by when they were changed; older entries first.
113 LAST_MODIFIED_DESCENDING - Sort people by when they were changed; newer entries first.
114 FIRST_NAME_ASCENDING - Sort people by first name.
115 LAST_NAME_ASCENDING - Sort people by last name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700116 x__xgafv: string, V1 error format.
117 Allowed values
118 1 - v1 error format
119 2 - v2 error format
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800120
121Returns:
122 An object of the form:
123
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 { # The response to a request for the authenticated user&#x27;s connections.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800125 &quot;totalItems&quot;: 42, # The total number of items in the list without pagination.
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 &quot;connections&quot;: [ # The list of people that the requestor is connected to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700127 { # Information about a person merged from various data sources such as the authenticated user&#x27;s contacts and profile data. Most fields can have multiple items. The items in a field have no guaranteed order, but each non-empty field is guaranteed to have exactly one field with `metadata.primary` set to true.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800128 &quot;clientData&quot;: [ # The person&#x27;s client data.
129 { # Arbitrary client data that is populated by clients. Duplicate keys and values are allowed.
130 &quot;key&quot;: &quot;A String&quot;, # The client specified key of the client data.
131 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the client data.
132 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
133 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700134 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800135 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
136 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800137 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
138 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700139 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800140 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700141 &quot;userTypes&quot;: [ # Output only. The user types.
142 &quot;A String&quot;,
143 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700144 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700145 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800146 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800147 &quot;value&quot;: &quot;A String&quot;, # The client specified value of the client data.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800148 },
149 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800150 &quot;ageRanges&quot;: [ # Output only. The person&#x27;s age ranges.
151 { # A person&#x27;s age range.
152 &quot;ageRange&quot;: &quot;A String&quot;, # The age range.
153 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the age range.
154 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
155 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800156 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800157 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
158 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800159 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
160 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800161 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800162 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800163 &quot;userTypes&quot;: [ # Output only. The user types.
164 &quot;A String&quot;,
165 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800166 },
167 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700168 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700169 },
170 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800171 &quot;urls&quot;: [ # The person&#x27;s associated URLs.
172 { # A person&#x27;s associated URLs.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800173 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the URL translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
174 &quot;type&quot;: &quot;A String&quot;, # The type of the URL. The type can be custom or one of these predefined values: * `home` * `work` * `blog` * `profile` * `homePage` * `ftp` * `reservations` * `appInstallPage`: website for a Currents application. * `other`
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800175 &quot;value&quot;: &quot;A String&quot;, # The URL.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800176 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the URL.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800177 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
178 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800179 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800180 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
181 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800182 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
183 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800184 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800185 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800186 &quot;userTypes&quot;: [ # Output only. The user types.
187 &quot;A String&quot;,
188 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800189 },
190 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800191 },
192 },
193 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800194 &quot;braggingRights&quot;: [ # **DEPRECATED**: No data will be returned The person&#x27;s bragging rights.
195 { # **DEPRECATED**: No data will be returned A person&#x27;s bragging rights.
196 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the bragging rights.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800197 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
198 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800199 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800200 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
201 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800202 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
203 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800204 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800205 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800206 &quot;userTypes&quot;: [ # Output only. The user types.
207 &quot;A String&quot;,
208 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800209 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800210 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800211 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800212 &quot;value&quot;: &quot;A String&quot;, # The bragging rights; for example, `climbed mount everest`.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800213 },
214 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800215 &quot;sipAddresses&quot;: [ # The person&#x27;s SIP addresses.
216 { # A person&#x27;s SIP address. Session Initial Protocol addresses are used for VoIP communications to make voice or video calls over the internet.
217 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the SIP address.
218 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
219 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800220 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800221 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
222 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800223 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
224 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800225 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800226 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800227 &quot;userTypes&quot;: [ # Output only. The user types.
228 &quot;A String&quot;,
229 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800230 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800231 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800232 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800233 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the SIP address translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
234 &quot;type&quot;: &quot;A String&quot;, # The type of the SIP address. The type can be custom or or one of these predefined values: * `home` * `work` * `mobile` * `other`
235 &quot;value&quot;: &quot;A String&quot;, # The SIP address in the [RFC 3261 19.1](https://tools.ietf.org/html/rfc3261#section-19.1) SIP URI format.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800236 },
237 ],
238 &quot;relations&quot;: [ # The person&#x27;s relations.
239 { # A person&#x27;s relation to another person.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800240 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relation.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800241 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
242 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800243 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800244 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
245 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800246 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
247 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800248 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800249 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800250 &quot;userTypes&quot;: [ # Output only. The user types.
251 &quot;A String&quot;,
252 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800253 },
254 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800255 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800256 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the relation translated and formatted in the viewer&#x27;s account locale or the locale specified in the Accept-Language HTTP header.
257 &quot;type&quot;: &quot;A String&quot;, # The person&#x27;s relation to the other person. The type can be custom or one of these predefined values: * `spouse` * `child` * `mother` * `father` * `parent` * `brother` * `sister` * `friend` * `relative` * `domesticPartner` * `manager` * `assistant` * `referredBy` * `partner`
258 &quot;person&quot;: &quot;A String&quot;, # The name of the other person this relation refers to.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800259 },
260 ],
261 &quot;miscKeywords&quot;: [ # The person&#x27;s miscellaneous keywords.
262 { # A person&#x27;s miscellaneous keyword.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800263 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the miscellaneous keyword.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800264 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
265 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800266 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800267 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
268 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800269 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
270 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800271 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800272 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800273 &quot;userTypes&quot;: [ # Output only. The user types.
274 &quot;A String&quot;,
275 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800276 },
277 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800278 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800279 &quot;type&quot;: &quot;A String&quot;, # The miscellaneous keyword type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800280 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the miscellaneous keyword translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
281 &quot;value&quot;: &quot;A String&quot;, # The value of the miscellaneous keyword.
282 },
283 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800284 &quot;biographies&quot;: [ # The person&#x27;s biographies. This field is a singleton for contact sources.
285 { # A person&#x27;s short biography.
286 &quot;contentType&quot;: &quot;A String&quot;, # The content type of the biography.
287 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the biography.
288 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
289 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800290 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800291 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
292 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800293 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
294 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800295 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800296 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800297 &quot;userTypes&quot;: [ # Output only. The user types.
298 &quot;A String&quot;,
299 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800300 },
301 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800302 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800303 &quot;value&quot;: &quot;A String&quot;, # The short biography.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800304 },
305 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800306 &quot;userDefined&quot;: [ # The person&#x27;s user defined data.
307 { # Arbitrary user data that is populated by the end users.
308 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the user defined data.
309 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
310 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800311 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800312 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
313 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800314 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
315 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800316 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800317 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800318 &quot;userTypes&quot;: [ # Output only. The user types.
319 &quot;A String&quot;,
320 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800321 },
322 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800323 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800324 &quot;key&quot;: &quot;A String&quot;, # The end user specified key of the user defined data.
325 &quot;value&quot;: &quot;A String&quot;, # The end user specified value of the user defined data.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800326 },
327 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800328 &quot;etag&quot;: &quot;A String&quot;, # The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the resource. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800329 &quot;skills&quot;: [ # The person&#x27;s skills.
330 { # A skill that the person has.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800331 &quot;value&quot;: &quot;A String&quot;, # The skill; for example, `underwater basket weaving`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800332 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the skill.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800333 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
334 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800335 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800336 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
337 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800338 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
339 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800340 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800341 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800342 &quot;userTypes&quot;: [ # Output only. The user types.
343 &quot;A String&quot;,
344 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800345 },
346 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800347 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800348 },
349 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800350 &quot;locations&quot;: [ # The person&#x27;s locations.
351 { # A person&#x27;s location.
352 &quot;deskCode&quot;: &quot;A String&quot;, # The individual desk location.
353 &quot;buildingId&quot;: &quot;A String&quot;, # The building identifier.
354 &quot;value&quot;: &quot;A String&quot;, # The free-form value of the location.
355 &quot;current&quot;: True or False, # Whether the location is the current location.
356 &quot;type&quot;: &quot;A String&quot;, # The type of the location. The type can be custom or one of these predefined values: * `desk` * `grewUp`
357 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the location.
358 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
359 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800360 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800361 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
362 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800363 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
364 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800365 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800366 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800367 &quot;userTypes&quot;: [ # Output only. The user types.
368 &quot;A String&quot;,
369 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800370 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800371 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800372 },
373 &quot;floor&quot;: &quot;A String&quot;, # The floor name or number.
374 &quot;floorSection&quot;: &quot;A String&quot;, # The floor section in `floor_name`.
375 },
376 ],
377 &quot;resourceName&quot;: &quot;A String&quot;, # The resource name for the person, assigned by the server. An ASCII string with a max length of 27 characters, in the form of `people/{person_id}`.
378 &quot;occupations&quot;: [ # The person&#x27;s occupations.
379 { # A person&#x27;s occupation.
380 &quot;value&quot;: &quot;A String&quot;, # The occupation; for example, `carpenter`.
381 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the occupation.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800382 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800383 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800384 &quot;source&quot;: { # The source of a field. # The source of the field.
385 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
386 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
387 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
388 &quot;type&quot;: &quot;A String&quot;, # The source type.
389 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
390 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
391 &quot;userTypes&quot;: [ # Output only. The user types.
392 &quot;A String&quot;,
393 ],
394 },
395 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800396 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800397 },
398 ],
399 &quot;fileAses&quot;: [ # The person&#x27;s file-ases.
400 { # The name that should be used to sort the person in a list.
401 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the file-as.
402 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
403 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
404 &quot;source&quot;: { # The source of a field. # The source of the field.
405 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
406 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
407 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
408 &quot;type&quot;: &quot;A String&quot;, # The source type.
409 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
410 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
411 &quot;userTypes&quot;: [ # Output only. The user types.
412 &quot;A String&quot;,
413 ],
414 },
415 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800416 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800417 &quot;value&quot;: &quot;A String&quot;, # The file-as value
418 },
419 ],
420 &quot;relationshipInterests&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s relationship interests.
421 { # **DEPRECATED**: No data will be returned A person&#x27;s relationship interest .
422 &quot;formattedValue&quot;: &quot;A String&quot;, # Output only. The value of the relationship interest translated and formatted in the viewer&#x27;s account locale or the locale specified in the Accept-Language HTTP header.
423 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relationship interest.
424 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
425 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
426 &quot;source&quot;: { # The source of a field. # The source of the field.
427 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
428 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
429 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
430 &quot;type&quot;: &quot;A String&quot;, # The source type.
431 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
432 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
433 &quot;userTypes&quot;: [ # Output only. The user types.
434 &quot;A String&quot;,
435 ],
436 },
437 },
438 },
439 &quot;value&quot;: &quot;A String&quot;, # The kind of relationship the person is looking for. The value can be custom or one of these predefined values: * `friend` * `date` * `relationship` * `networking`
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800440 },
441 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800442 &quot;coverPhotos&quot;: [ # Output only. The person&#x27;s cover photos.
443 { # A person&#x27;s cover photo. A large image shown on the person&#x27;s profile page that represents who they are or what they care about.
444 &quot;default&quot;: True or False, # True if the cover photo is the default cover photo; false if the cover photo is a user-provided cover photo.
445 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the cover photo.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800446 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
447 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800448 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800449 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
450 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800451 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
452 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800453 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800454 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800455 &quot;userTypes&quot;: [ # Output only. The user types.
456 &quot;A String&quot;,
457 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800458 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800459 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800460 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800461 &quot;url&quot;: &quot;A String&quot;, # The URL of the cover photo.
462 },
463 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800464 &quot;memberships&quot;: [ # The person&#x27;s group memberships.
465 { # A person&#x27;s membership in a group. Only contact group memberships can be modified.
466 &quot;domainMembership&quot;: { # A G Suite Domain membership. # Output only. The domain membership.
467 &quot;inViewerDomain&quot;: True or False, # True if the person is in the viewer&#x27;s G Suite domain.
468 },
469 &quot;contactGroupMembership&quot;: { # A Google contact group membership. # The contact group membership.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800470 &quot;contactGroupResourceName&quot;: &quot;A String&quot;, # The resource name for the contact group, assigned by the server. An ASCII string, in the form of `contactGroups/{contact_group_id}`. Only contact_group_resource_name can be used for modifying memberships. Any contact group membership can be removed, but only user group or &quot;myContacts&quot; or &quot;starred&quot; system groups memberships can be added. A contact must always have at least one contact group membership.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800471 &quot;contactGroupId&quot;: &quot;A String&quot;, # Output only. The contact group ID for the contact group membership.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800472 },
473 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the membership.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800474 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
475 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800476 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800477 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
478 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800479 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
480 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800481 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800482 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800483 &quot;userTypes&quot;: [ # Output only. The user types.
484 &quot;A String&quot;,
485 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800486 },
487 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800488 },
489 },
490 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800491 &quot;photos&quot;: [ # Output only. The person&#x27;s photos.
492 { # A person&#x27;s photo. A picture shown next to the person&#x27;s name to help others recognize the person.
493 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the photo.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800494 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
495 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800496 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800497 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
498 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800499 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
500 &quot;type&quot;: &quot;A String&quot;, # The source type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800501 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800502 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800503 &quot;userTypes&quot;: [ # Output only. The user types.
504 &quot;A String&quot;,
505 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800506 },
507 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800508 },
509 &quot;url&quot;: &quot;A String&quot;, # The URL of the photo. You can change the desired size by appending a query parameter `sz={size}` at the end of the url, where {size} is the size in pixels. Example: https://lh3.googleusercontent.com/-T_wVWLlmg7w/AAAAAAAAAAI/AAAAAAAABa8/00gzXvDBYqw/s100/photo.jpg?sz=50
510 &quot;default&quot;: True or False, # True if the photo is a default photo; false if the photo is a user-provided photo.
511 },
512 ],
513 &quot;relationshipStatuses&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s relationship statuses.
514 { # **DEPRECATED**: No data will be returned A person&#x27;s relationship status.
515 &quot;value&quot;: &quot;A String&quot;, # The relationship status. The value can be custom or one of these predefined values: * `single` * `inARelationship` * `engaged` * `married` * `itsComplicated` * `openRelationship` * `widowed` * `inDomesticPartnership` * `inCivilUnion`
516 &quot;formattedValue&quot;: &quot;A String&quot;, # Output only. The value of the relationship status translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
517 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relationship status.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800518 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
519 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800520 &quot;source&quot;: { # The source of a field. # The source of the field.
521 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
522 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
523 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
524 &quot;type&quot;: &quot;A String&quot;, # The source type.
525 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
526 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
527 &quot;userTypes&quot;: [ # Output only. The user types.
528 &quot;A String&quot;,
529 ],
530 },
531 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800532 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800533 },
534 ],
535 &quot;names&quot;: [ # The person&#x27;s names. This field is a singleton for contact sources.
536 { # A person&#x27;s name. If the name is a mononym, the family name is empty.
537 &quot;familyName&quot;: &quot;A String&quot;, # The family name.
538 &quot;phoneticHonorificPrefix&quot;: &quot;A String&quot;, # The honorific prefixes spelled as they sound.
539 &quot;phoneticMiddleName&quot;: &quot;A String&quot;, # The middle name(s) spelled as they sound.
540 &quot;phoneticFamilyName&quot;: &quot;A String&quot;, # The family name spelled as it sounds.
541 &quot;honorificSuffix&quot;: &quot;A String&quot;, # The honorific suffixes, such as `Jr.`
542 &quot;phoneticHonorificSuffix&quot;: &quot;A String&quot;, # The honorific suffixes spelled as they sound.
543 &quot;phoneticFullName&quot;: &quot;A String&quot;, # The full name spelled as it sounds.
544 &quot;phoneticGivenName&quot;: &quot;A String&quot;, # The given name spelled as it sounds.
545 &quot;unstructuredName&quot;: &quot;A String&quot;, # The free form name value.
546 &quot;honorificPrefix&quot;: &quot;A String&quot;, # The honorific prefixes, such as `Mrs.` or `Dr.`
547 &quot;givenName&quot;: &quot;A String&quot;, # The given name.
548 &quot;displayName&quot;: &quot;A String&quot;, # Output only. The display name formatted according to the locale specified by the viewer&#x27;s account or the `Accept-Language` HTTP header.
549 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the name.
550 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
551 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
552 &quot;source&quot;: { # The source of a field. # The source of the field.
553 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
554 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
555 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
556 &quot;type&quot;: &quot;A String&quot;, # The source type.
557 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
558 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
559 &quot;userTypes&quot;: [ # Output only. The user types.
560 &quot;A String&quot;,
561 ],
562 },
563 },
564 },
565 &quot;middleName&quot;: &quot;A String&quot;, # The middle name(s).
566 &quot;displayNameLastFirst&quot;: &quot;A String&quot;, # Output only. The display name with the last name first formatted according to the locale specified by the viewer&#x27;s account or the `Accept-Language` HTTP header.
567 },
568 ],
569 &quot;metadata&quot;: { # The metadata about a person. # Output only. Metadata about the person.
570 &quot;previousResourceNames&quot;: [ # Output only. Any former resource names this person has had. Populated only for [`connections.list`](/people/api/rest/v1/people.connections/list) requests that include a sync token. The resource name may change when adding or removing fields that link a contact and profile such as a verified email, verified phone number, or profile URL.
571 &quot;A String&quot;,
572 ],
573 &quot;sources&quot;: [ # The sources of data for the person.
574 { # The source of a field.
575 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
576 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
577 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
578 &quot;type&quot;: &quot;A String&quot;, # The source type.
579 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
580 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
581 &quot;userTypes&quot;: [ # Output only. The user types.
582 &quot;A String&quot;,
583 ],
584 },
585 },
586 ],
587 &quot;deleted&quot;: True or False, # Output only. True if the person resource has been deleted. Populated only for [`connections.list`](/people/api/rest/v1/people.connections/list) requests that include a sync token.
588 &quot;linkedPeopleResourceNames&quot;: [ # Output only. Resource names of people linked to this resource.
589 &quot;A String&quot;,
590 ],
591 &quot;objectType&quot;: &quot;A String&quot;, # Output only. **DEPRECATED** (Please use `person.metadata.sources.profileMetadata.objectType` instead) The type of the person object.
592 },
593 &quot;ageRange&quot;: &quot;A String&quot;, # Output only. **DEPRECATED** (Please use `person.ageRanges` instead) The person&#x27;s age range.
594 &quot;nicknames&quot;: [ # The person&#x27;s nicknames.
595 { # A person&#x27;s nickname.
596 &quot;value&quot;: &quot;A String&quot;, # The nickname.
597 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the nickname.
598 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
599 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
600 &quot;source&quot;: { # The source of a field. # The source of the field.
601 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
602 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
603 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
604 &quot;type&quot;: &quot;A String&quot;, # The source type.
605 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
606 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
607 &quot;userTypes&quot;: [ # Output only. The user types.
608 &quot;A String&quot;,
609 ],
610 },
611 },
612 },
613 &quot;type&quot;: &quot;A String&quot;, # The type of the nickname.
614 },
615 ],
616 &quot;residences&quot;: [ # **DEPRECATED**: (Please use `person.locations` instead) The person&#x27;s residences.
617 { # **DEPRECATED**: Please use `person.locations` instead. A person&#x27;s past or current residence.
618 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the residence.
619 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
620 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
621 &quot;source&quot;: { # The source of a field. # The source of the field.
622 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
623 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
624 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
625 &quot;type&quot;: &quot;A String&quot;, # The source type.
626 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
627 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
628 &quot;userTypes&quot;: [ # Output only. The user types.
629 &quot;A String&quot;,
630 ],
631 },
632 },
633 },
634 &quot;value&quot;: &quot;A String&quot;, # The address of the residence.
635 &quot;current&quot;: True or False, # True if the residence is the person&#x27;s current residence; false if the residence is a past residence.
636 },
637 ],
638 &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses.
639 { # A person&#x27;s email address.
640 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the email address.
641 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
642 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
643 &quot;source&quot;: { # The source of a field. # The source of the field.
644 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
645 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
646 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
647 &quot;type&quot;: &quot;A String&quot;, # The source type.
648 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
649 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
650 &quot;userTypes&quot;: [ # Output only. The user types.
651 &quot;A String&quot;,
652 ],
653 },
654 },
655 },
656 &quot;displayName&quot;: &quot;A String&quot;, # The display name of the email.
657 &quot;value&quot;: &quot;A String&quot;, # The email address.
658 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the email address translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
659 &quot;type&quot;: &quot;A String&quot;, # The type of the email address. The type can be custom or one of these predefined values: * `home` * `work` * `other`
660 },
661 ],
662 &quot;locales&quot;: [ # The person&#x27;s locale preferences.
663 { # A person&#x27;s locale preference.
664 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the locale.
665 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
666 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
667 &quot;source&quot;: { # The source of a field. # The source of the field.
668 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
669 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
670 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
671 &quot;type&quot;: &quot;A String&quot;, # The source type.
672 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
673 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
674 &quot;userTypes&quot;: [ # Output only. The user types.
675 &quot;A String&quot;,
676 ],
677 },
678 },
679 },
680 &quot;value&quot;: &quot;A String&quot;, # The well-formed [IETF BCP 47](https://tools.ietf.org/html/bcp47) language tag representing the locale.
681 },
682 ],
683 &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers.
684 { # A person&#x27;s phone number.
685 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the phone number.
686 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
687 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
688 &quot;source&quot;: { # The source of a field. # The source of the field.
689 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
690 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
691 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
692 &quot;type&quot;: &quot;A String&quot;, # The source type.
693 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
694 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
695 &quot;userTypes&quot;: [ # Output only. The user types.
696 &quot;A String&quot;,
697 ],
698 },
699 },
700 },
701 &quot;canonicalForm&quot;: &quot;A String&quot;, # Output only. The canonicalized [ITU-T E.164](https://law.resource.org/pub/us/cfr/ibr/004/itu-t.E.164.1.2008.pdf) form of the phone number.
702 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the phone number translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
703 &quot;type&quot;: &quot;A String&quot;, # The type of the phone number. The type can be custom or one of these predefined values: * `home` * `work` * `mobile` * `homeFax` * `workFax` * `otherFax` * `pager` * `workMobile` * `workPager` * `main` * `googleVoice` * `other`
704 &quot;value&quot;: &quot;A String&quot;, # The phone number.
705 },
706 ],
707 &quot;birthdays&quot;: [ # The person&#x27;s birthdays. This field is a singleton for contact sources.
708 { # A person&#x27;s birthday. At least one of the `date` and `text` fields are specified. The `date` and `text` fields typically represent the same date, but are not guaranteed to.
709 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the birthday.
710 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
711 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
712 &quot;source&quot;: { # The source of a field. # The source of the field.
713 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
714 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
715 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
716 &quot;type&quot;: &quot;A String&quot;, # The source type.
717 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
718 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
719 &quot;userTypes&quot;: [ # Output only. The user types.
720 &quot;A String&quot;,
721 ],
722 },
723 },
724 },
725 &quot;text&quot;: &quot;A String&quot;, # A free-form string representing the user&#x27;s birthday.
726 &quot;date&quot;: { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The date of the birthday.
727 &quot;month&quot;: 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
728 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
729 &quot;day&quot;: 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn&#x27;t significant.
730 },
731 },
732 ],
733 &quot;events&quot;: [ # The person&#x27;s events.
734 { # An event related to the person.
735 &quot;type&quot;: &quot;A String&quot;, # The type of the event. The type can be custom or one of these predefined values: * `anniversary` * `other`
736 &quot;date&quot;: { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The date of the event.
737 &quot;month&quot;: 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
738 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
739 &quot;day&quot;: 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn&#x27;t significant.
740 },
741 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the event.
742 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
743 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
744 &quot;source&quot;: { # The source of a field. # The source of the field.
745 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
746 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
747 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
748 &quot;type&quot;: &quot;A String&quot;, # The source type.
749 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
750 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
751 &quot;userTypes&quot;: [ # Output only. The user types.
752 &quot;A String&quot;,
753 ],
754 },
755 },
756 },
757 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the event translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
758 },
759 ],
760 &quot;imClients&quot;: [ # The person&#x27;s instant messaging clients.
761 { # A person&#x27;s instant messaging client.
762 &quot;protocol&quot;: &quot;A String&quot;, # The protocol of the IM client. The protocol can be custom or one of these predefined values: * `aim` * `msn` * `yahoo` * `skype` * `qq` * `googleTalk` * `icq` * `jabber` * `netMeeting`
763 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the IM client.
764 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
765 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
766 &quot;source&quot;: { # The source of a field. # The source of the field.
767 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
768 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
769 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
770 &quot;type&quot;: &quot;A String&quot;, # The source type.
771 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
772 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
773 &quot;userTypes&quot;: [ # Output only. The user types.
774 &quot;A String&quot;,
775 ],
776 },
777 },
778 },
779 &quot;type&quot;: &quot;A String&quot;, # The type of the IM client. The type can be custom or one of these predefined values: * `home` * `work` * `other`
780 &quot;username&quot;: &quot;A String&quot;, # The user name used in the IM client.
781 &quot;formattedProtocol&quot;: &quot;A String&quot;, # Output only. The protocol of the IM client formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
782 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the IM client translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
783 },
784 ],
785 &quot;organizations&quot;: [ # The person&#x27;s past or current organizations.
786 { # A person&#x27;s past or current organization. Overlapping date ranges are permitted.
787 &quot;phoneticName&quot;: &quot;A String&quot;, # The phonetic name of the organization.
788 &quot;title&quot;: &quot;A String&quot;, # The person&#x27;s job title at the organization.
789 &quot;type&quot;: &quot;A String&quot;, # The type of the organization. The type can be custom or one of these predefined values: * `work` * `school`
790 &quot;endDate&quot;: { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The end date when the person left the organization.
791 &quot;month&quot;: 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
792 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
793 &quot;day&quot;: 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn&#x27;t significant.
794 },
795 &quot;jobDescription&quot;: &quot;A String&quot;, # The person&#x27;s job description at the organization.
796 &quot;name&quot;: &quot;A String&quot;, # The name of the organization.
797 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the organization.
798 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
799 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
800 &quot;source&quot;: { # The source of a field. # The source of the field.
801 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
802 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
803 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
804 &quot;type&quot;: &quot;A String&quot;, # The source type.
805 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
806 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
807 &quot;userTypes&quot;: [ # Output only. The user types.
808 &quot;A String&quot;,
809 ],
810 },
811 },
812 },
813 &quot;current&quot;: True or False, # True if the organization is the person&#x27;s current organization; false if the organization is a past organization.
814 &quot;startDate&quot;: { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The start date when the person joined the organization.
815 &quot;month&quot;: 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
816 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
817 &quot;day&quot;: 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn&#x27;t significant.
818 },
819 &quot;location&quot;: &quot;A String&quot;, # The location of the organization office the person works at.
820 &quot;domain&quot;: &quot;A String&quot;, # The domain name associated with the organization; for example, `google.com`.
821 &quot;department&quot;: &quot;A String&quot;, # The person&#x27;s department at the organization.
822 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the organization translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
823 &quot;symbol&quot;: &quot;A String&quot;, # The symbol associated with the organization; for example, a stock ticker symbol, abbreviation, or acronym.
824 },
825 ],
826 &quot;externalIds&quot;: [ # The person&#x27;s external IDs.
827 { # An identifier from an external entity related to the person.
828 &quot;value&quot;: &quot;A String&quot;, # The value of the external ID.
829 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the event translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
830 &quot;type&quot;: &quot;A String&quot;, # The type of the external ID. The type can be custom or one of these predefined values: * `account` * `customer` * `loginId` * `network` * `organization`
831 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the external ID.
832 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
833 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
834 &quot;source&quot;: { # The source of a field. # The source of the field.
835 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
836 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
837 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
838 &quot;type&quot;: &quot;A String&quot;, # The source type.
839 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
840 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
841 &quot;userTypes&quot;: [ # Output only. The user types.
842 &quot;A String&quot;,
843 ],
844 },
845 },
846 },
847 },
848 ],
849 &quot;addresses&quot;: [ # The person&#x27;s street addresses.
850 { # A person&#x27;s physical address. May be a P.O. box or street address. All fields are optional.
851 &quot;extendedAddress&quot;: &quot;A String&quot;, # The extended address of the address; for example, the apartment number.
852 &quot;streetAddress&quot;: &quot;A String&quot;, # The street address.
853 &quot;countryCode&quot;: &quot;A String&quot;, # The [ISO 3166-1 alpha-2](http://www.iso.org/iso/country_codes.htm) country code of the address.
854 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the address translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
855 &quot;city&quot;: &quot;A String&quot;, # The city of the address.
856 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the address.
857 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
858 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
859 &quot;source&quot;: { # The source of a field. # The source of the field.
860 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
861 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
862 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
863 &quot;type&quot;: &quot;A String&quot;, # The source type.
864 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
865 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
866 &quot;userTypes&quot;: [ # Output only. The user types.
867 &quot;A String&quot;,
868 ],
869 },
870 },
871 },
872 &quot;poBox&quot;: &quot;A String&quot;, # The P.O. box of the address.
873 &quot;region&quot;: &quot;A String&quot;, # The region of the address; for example, the state or province.
874 &quot;formattedValue&quot;: &quot;A String&quot;, # The unstructured value of the address. If this is not set by the user it will be automatically constructed from structured values.
875 &quot;postalCode&quot;: &quot;A String&quot;, # The postal code of the address.
876 &quot;country&quot;: &quot;A String&quot;, # The country of the address.
877 &quot;type&quot;: &quot;A String&quot;, # The type of the address. The type can be custom or one of these predefined values: * `home` * `work` * `other`
878 },
879 ],
880 &quot;taglines&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s taglines.
881 { # **DEPRECATED**: No data will be returned A brief one-line description of the person.
882 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the tagline.
883 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
884 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
885 &quot;source&quot;: { # The source of a field. # The source of the field.
886 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
887 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
888 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
889 &quot;type&quot;: &quot;A String&quot;, # The source type.
890 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
891 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
892 &quot;userTypes&quot;: [ # Output only. The user types.
893 &quot;A String&quot;,
894 ],
895 },
896 },
897 },
898 &quot;value&quot;: &quot;A String&quot;, # The tagline.
899 },
900 ],
901 &quot;genders&quot;: [ # The person&#x27;s genders. This field is a singleton for contact sources.
902 { # A person&#x27;s gender.
903 &quot;addressMeAs&quot;: &quot;A String&quot;, # The type of pronouns that should be used to address the person. The value can be custom or one of these predefined values: * `male` * `female` * `other`
904 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the gender.
905 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
906 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
907 &quot;source&quot;: { # The source of a field. # The source of the field.
908 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
909 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
910 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
911 &quot;type&quot;: &quot;A String&quot;, # The source type.
912 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
913 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
914 &quot;userTypes&quot;: [ # Output only. The user types.
915 &quot;A String&quot;,
916 ],
917 },
918 },
919 },
920 &quot;formattedValue&quot;: &quot;A String&quot;, # Output only. The value of the gender translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale. Unspecified or custom value are not localized.
921 &quot;value&quot;: &quot;A String&quot;, # The gender for the person. The gender can be custom or one of these predefined values: * `male` * `female` * `unspecified`
922 },
923 ],
924 &quot;calendarUrls&quot;: [ # The person&#x27;s calendar URLs.
925 { # A person&#x27;s calendar URL.
926 &quot;type&quot;: &quot;A String&quot;, # The type of the calendar URL. The type can be custom or one of these predefined values: * `home` * `freeBusy` * `work`
927 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the calendar URL.
928 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
929 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
930 &quot;source&quot;: { # The source of a field. # The source of the field.
931 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
932 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
933 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
934 &quot;type&quot;: &quot;A String&quot;, # The source type.
935 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
936 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
937 &quot;userTypes&quot;: [ # Output only. The user types.
938 &quot;A String&quot;,
939 ],
940 },
941 },
942 },
943 &quot;formattedType&quot;: &quot;A String&quot;, # Output only. The type of the calendar URL translated and formatted in the viewer&#x27;s account locale or the `Accept-Language` HTTP header locale.
944 &quot;url&quot;: &quot;A String&quot;, # The calendar URL.
945 },
946 ],
947 &quot;interests&quot;: [ # The person&#x27;s interests.
948 { # One of the person&#x27;s interests.
949 &quot;value&quot;: &quot;A String&quot;, # The interest; for example, `stargazing`.
950 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the interest.
951 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
952 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
953 &quot;source&quot;: { # The source of a field. # The source of the field.
954 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
955 &quot;etag&quot;: &quot;A String&quot;, # **Only populated in `person.metadata.sources`.** The [HTTP entity tag](https://en.wikipedia.org/wiki/HTTP_ETag) of the source. Used for web cache validation.
956 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
957 &quot;type&quot;: &quot;A String&quot;, # The source type.
958 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
959 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
960 &quot;userTypes&quot;: [ # Output only. The user types.
961 &quot;A String&quot;,
962 ],
963 },
964 },
965 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800966 },
967 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700968 },
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800969 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800970 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800971 &quot;nextSyncToken&quot;: &quot;A String&quot;, # A token, which can be sent as `sync_token` to retrieve changes since the last request. Request must set `request_sync_token` to return the sync token. When the response is paginated, only the last page will contain `nextSyncToken`.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800972 &quot;totalPeople&quot;: 42, # **DEPRECATED** (Please use totalItems) The total number of people in the list without pagination.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800973 }</pre>
974</div>
975
976<div class="method">
977 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
978 <pre>Retrieves the next page of results.
979
980Args:
981 previous_request: The request for the previous page. (required)
982 previous_response: The response from the request for the previous page. (required)
983
984Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700985 A request object that you can call &#x27;execute()&#x27; on to request the next
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800986 page. Returns None if there are no more items in the collection.
987 </pre>
988</div>
989
990</body></html>