blob: 391b9bb2869ae67619d66a0e0cd8104a2b08261e [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 Botc2228be2020-11-24 15:48:03 -080081 <code><a href="#list">list(resourceName, pageSize=None, personFields=None, syncToken=None, sortOrder=None, requestSyncToken=None, requestMask_includeField=None, sources=None, pageToken=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 Botc2228be2020-11-24 15:48:03 -080093 <code class="details" id="list">list(resourceName, pageSize=None, personFields=None, syncToken=None, sortOrder=None, requestSyncToken=None, requestMask_includeField=None, sources=None, pageToken=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)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070098 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 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
100 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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700101 sortOrder: string, Optional. The order in which the connections should be sorted. Defaults to `LAST_MODIFIED_ASCENDING`.
102 Allowed values
103 LAST_MODIFIED_ASCENDING - Sort people by when they were changed; older entries first.
104 LAST_MODIFIED_DESCENDING - Sort people by when they were changed; newer entries first.
105 FIRST_NAME_ASCENDING - Sort people by first name.
106 LAST_NAME_ASCENDING - Sort people by last name.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800107 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.
108 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`.
109 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)
110 Allowed values
111 READ_SOURCE_TYPE_UNSPECIFIED - Unspecified.
112 READ_SOURCE_TYPE_PROFILE - Returns SourceType.ACCOUNT, SourceType.DOMAIN_PROFILE, and SourceType.PROFILE.
113 READ_SOURCE_TYPE_CONTACT - Returns SourceType.CONTACT.
114 READ_SOURCE_TYPE_DOMAIN_CONTACT - Returns SourceType.DOMAIN_CONTACT.
115 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.
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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700125 &quot;connections&quot;: [ # The list of people that the requestor is connected to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700126 { # 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 Botc2228be2020-11-24 15:48:03 -0800127 &quot;sipAddresses&quot;: [ # The person&#x27;s SIP addresses.
128 { # A person&#x27;s SIP address. Session Initial Protocol addresses are used for VoIP communications to make voice or video calls over the internet.
129 &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`
130 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the SIP address.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700131 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700132 &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 Botc2228be2020-11-24 15:48:03 -0800133 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700134 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700135 &quot;userTypes&quot;: [ # Output only. The user types.
136 &quot;A String&quot;,
137 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700138 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700139 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700140 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700141 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700142 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700143 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700144 &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 -0700145 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800146 &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.
147 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700148 },
149 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700150 &quot;urls&quot;: [ # The person&#x27;s associated URLs.
151 { # A person&#x27;s associated URLs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700152 &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 Botc2228be2020-11-24 15:48:03 -0800153 &quot;value&quot;: &quot;A String&quot;, # The URL.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700154 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800155 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the URL.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700156 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700157 &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 Botc2228be2020-11-24 15:48:03 -0800158 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700159 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
160 &quot;userTypes&quot;: [ # Output only. The user types.
161 &quot;A String&quot;,
162 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700163 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700164 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700165 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700166 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
167 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700168 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700169 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
170 },
171 },
172 ],
173 &quot;skills&quot;: [ # The person&#x27;s skills.
174 { # A skill that the person has.
175 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the skill.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700176 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700177 &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 Botc2228be2020-11-24 15:48:03 -0800178 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700179 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700180 &quot;userTypes&quot;: [ # Output only. The user types.
181 &quot;A String&quot;,
182 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800183 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700184 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800185 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700186 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
187 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800188 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700189 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
190 },
191 &quot;value&quot;: &quot;A String&quot;, # The skill; for example, `underwater basket weaving`.
192 },
193 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800194 &quot;genders&quot;: [ # The person&#x27;s genders. This field is a singleton for contact sources.
195 { # A person&#x27;s gender.
196 &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.
197 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the gender.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700198 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700199 &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 Botc2228be2020-11-24 15:48:03 -0800200 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700201 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700202 &quot;userTypes&quot;: [ # Output only. The user types.
203 &quot;A String&quot;,
204 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800205 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700206 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800207 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700208 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
209 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800210 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700211 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
212 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800213 &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`
214 &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`
215 },
216 ],
217 &quot;nicknames&quot;: [ # The person&#x27;s nicknames.
218 { # A person&#x27;s nickname.
219 &quot;value&quot;: &quot;A String&quot;, # The nickname.
220 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the nickname.
221 &quot;source&quot;: { # The source of a field. # The source of the field.
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.
223 &quot;type&quot;: &quot;A String&quot;, # The source type.
224 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
225 &quot;userTypes&quot;: [ # Output only. The user types.
226 &quot;A String&quot;,
227 ],
228 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
229 },
230 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
231 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
232 },
233 &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.
234 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
235 },
236 &quot;type&quot;: &quot;A String&quot;, # The type of the nickname.
237 },
238 ],
239 &quot;externalIds&quot;: [ # The person&#x27;s external IDs.
240 { # An identifier from an external entity related to the person.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700241 &quot;value&quot;: &quot;A String&quot;, # The value of the external ID.
242 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800243 &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`
244 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the external ID.
245 &quot;source&quot;: { # The source of a field. # The source of the field.
246 &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.
247 &quot;type&quot;: &quot;A String&quot;, # The source type.
248 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
249 &quot;userTypes&quot;: [ # Output only. The user types.
250 &quot;A String&quot;,
251 ],
252 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
253 },
254 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
255 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
256 },
257 &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.
258 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
259 },
260 },
261 ],
262 &quot;relationshipInterests&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s relationship interests.
263 { # **DEPRECATED**: No data will be returned A person&#x27;s relationship interest .
264 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relationship interest.
265 &quot;source&quot;: { # The source of a field. # The source of the field.
266 &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.
267 &quot;type&quot;: &quot;A String&quot;, # The source type.
268 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
269 &quot;userTypes&quot;: [ # Output only. The user types.
270 &quot;A String&quot;,
271 ],
272 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
273 },
274 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
275 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
276 },
277 &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.
278 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
279 },
280 &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`
281 &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.
282 },
283 ],
284 &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers.
285 { # A person&#x27;s phone number.
286 &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.
287 &quot;value&quot;: &quot;A String&quot;, # The phone number.
288 &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`
289 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the phone number.
290 &quot;source&quot;: { # The source of a field. # The source of the field.
291 &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.
292 &quot;type&quot;: &quot;A String&quot;, # The source type.
293 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
294 &quot;userTypes&quot;: [ # Output only. The user types.
295 &quot;A String&quot;,
296 ],
297 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
298 },
299 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
300 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
301 },
302 &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.
303 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
304 },
305 &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.
306 },
307 ],
308 &quot;userDefined&quot;: [ # The person&#x27;s user defined data.
309 { # Arbitrary user data that is populated by the end users.
310 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the user defined data.
311 &quot;source&quot;: { # The source of a field. # The source of the field.
312 &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.
313 &quot;type&quot;: &quot;A String&quot;, # The source type.
314 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
315 &quot;userTypes&quot;: [ # Output only. The user types.
316 &quot;A String&quot;,
317 ],
318 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
319 },
320 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
321 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
322 },
323 &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.
324 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
325 },
326 &quot;value&quot;: &quot;A String&quot;, # The end user specified value of the user defined data.
327 &quot;key&quot;: &quot;A String&quot;, # The end user specified key of the user defined data.
328 },
329 ],
330 &quot;braggingRights&quot;: [ # **DEPRECATED**: No data will be returned The person&#x27;s bragging rights.
331 { # **DEPRECATED**: No data will be returned A person&#x27;s bragging rights.
332 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the bragging rights.
333 &quot;source&quot;: { # The source of a field. # The source of the field.
334 &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.
335 &quot;type&quot;: &quot;A String&quot;, # The source type.
336 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
337 &quot;userTypes&quot;: [ # Output only. The user types.
338 &quot;A String&quot;,
339 ],
340 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
341 },
342 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
343 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
344 },
345 &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.
346 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
347 },
348 &quot;value&quot;: &quot;A String&quot;, # The bragging rights; for example, `climbed mount everest`.
349 },
350 ],
351 &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.
352 &quot;imClients&quot;: [ # The person&#x27;s instant messaging clients.
353 { # A person&#x27;s instant messaging client.
354 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the IM client.
355 &quot;source&quot;: { # The source of a field. # The source of the field.
356 &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.
357 &quot;type&quot;: &quot;A String&quot;, # The source type.
358 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
359 &quot;userTypes&quot;: [ # Output only. The user types.
360 &quot;A String&quot;,
361 ],
362 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
363 },
364 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
365 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
366 },
367 &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.
368 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
369 },
370 &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`
371 &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`
372 &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.
373 &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.
374 &quot;username&quot;: &quot;A String&quot;, # The user name used in the IM client.
375 },
376 ],
377 &quot;locales&quot;: [ # The person&#x27;s locale preferences.
378 { # A person&#x27;s locale preference.
379 &quot;value&quot;: &quot;A String&quot;, # The well-formed [IETF BCP 47](https://tools.ietf.org/html/bcp47) language tag representing the locale.
380 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the locale.
381 &quot;source&quot;: { # The source of a field. # The source of the field.
382 &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.
383 &quot;type&quot;: &quot;A String&quot;, # The source type.
384 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
385 &quot;userTypes&quot;: [ # Output only. The user types.
386 &quot;A String&quot;,
387 ],
388 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
389 },
390 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
391 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
392 },
393 &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.
394 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
395 },
396 },
397 ],
398 &quot;relations&quot;: [ # The person&#x27;s relations.
399 { # A person&#x27;s relation to another person.
400 &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.
401 &quot;person&quot;: &quot;A String&quot;, # The name of the other person this relation refers to.
402 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relation.
403 &quot;source&quot;: { # The source of a field. # The source of the field.
404 &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.
405 &quot;type&quot;: &quot;A String&quot;, # The source type.
406 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
407 &quot;userTypes&quot;: [ # Output only. The user types.
408 &quot;A String&quot;,
409 ],
410 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
411 },
412 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
413 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
414 },
415 &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.
416 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
417 },
418 &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`
419 },
420 ],
421 &quot;residences&quot;: [ # **DEPRECATED**: (Please use `person.locations` instead) The person&#x27;s residences.
422 { # **DEPRECATED**: Please use `person.locations` instead. A person&#x27;s past or current residence.
423 &quot;value&quot;: &quot;A String&quot;, # The address of the residence.
424 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the residence.
425 &quot;source&quot;: { # The source of a field. # The source of the field.
426 &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.
427 &quot;type&quot;: &quot;A String&quot;, # The source type.
428 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
429 &quot;userTypes&quot;: [ # Output only. The user types.
430 &quot;A String&quot;,
431 ],
432 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
433 },
434 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
435 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
436 },
437 &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.
438 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
439 },
440 &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.
441 },
442 ],
443 &quot;fileAses&quot;: [ # The person&#x27;s file-ases.
444 { # The name that should be used to sort the person in a list.
445 &quot;value&quot;: &quot;A String&quot;, # The file-as value
446 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the file-as.
447 &quot;source&quot;: { # The source of a field. # The source of the field.
448 &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.
449 &quot;type&quot;: &quot;A String&quot;, # The source type.
450 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
451 &quot;userTypes&quot;: [ # Output only. The user types.
452 &quot;A String&quot;,
453 ],
454 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
455 },
456 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
457 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
458 },
459 &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.
460 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
461 },
462 },
463 ],
464 &quot;ageRanges&quot;: [ # Output only. The person&#x27;s age ranges.
465 { # A person&#x27;s age range.
466 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the age range.
467 &quot;source&quot;: { # The source of a field. # The source of the field.
468 &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.
469 &quot;type&quot;: &quot;A String&quot;, # The source type.
470 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
471 &quot;userTypes&quot;: [ # Output only. The user types.
472 &quot;A String&quot;,
473 ],
474 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
475 },
476 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
477 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
478 },
479 &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.
480 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
481 },
482 &quot;ageRange&quot;: &quot;A String&quot;, # The age range.
483 },
484 ],
485 &quot;coverPhotos&quot;: [ # Output only. The person&#x27;s cover photos.
486 { # 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.
487 &quot;url&quot;: &quot;A String&quot;, # The URL of the cover photo.
488 &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.
489 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the cover photo.
490 &quot;source&quot;: { # The source of a field. # The source of the field.
491 &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.
492 &quot;type&quot;: &quot;A String&quot;, # The source type.
493 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
494 &quot;userTypes&quot;: [ # Output only. The user types.
495 &quot;A String&quot;,
496 ],
497 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
498 },
499 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
500 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
501 },
502 &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.
503 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
504 },
505 },
506 ],
507 &quot;ageRange&quot;: &quot;A String&quot;, # Output only. **DEPRECATED** (Please use `person.ageRanges` instead) The person&#x27;s age range.
508 &quot;locations&quot;: [ # The person&#x27;s locations.
509 { # A person&#x27;s location.
510 &quot;deskCode&quot;: &quot;A String&quot;, # The individual desk location.
511 &quot;value&quot;: &quot;A String&quot;, # The free-form value of the location.
512 &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`
513 &quot;buildingId&quot;: &quot;A String&quot;, # The building identifier.
514 &quot;floorSection&quot;: &quot;A String&quot;, # The floor section in `floor_name`.
515 &quot;floor&quot;: &quot;A String&quot;, # The floor name or number.
516 &quot;current&quot;: True or False, # Whether the location is the current location.
517 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the location.
518 &quot;source&quot;: { # The source of a field. # The source of the field.
519 &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.
520 &quot;type&quot;: &quot;A String&quot;, # The source type.
521 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
522 &quot;userTypes&quot;: [ # Output only. The user types.
523 &quot;A String&quot;,
524 ],
525 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
526 },
527 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
528 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
529 },
530 &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.
531 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
532 },
533 },
534 ],
535 &quot;occupations&quot;: [ # The person&#x27;s occupations.
536 { # A person&#x27;s occupation.
537 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the occupation.
538 &quot;source&quot;: { # The source of a field. # The source of the field.
539 &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.
540 &quot;type&quot;: &quot;A String&quot;, # The source type.
541 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
542 &quot;userTypes&quot;: [ # Output only. The user types.
543 &quot;A String&quot;,
544 ],
545 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
546 },
547 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
548 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
549 },
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 },
553 &quot;value&quot;: &quot;A String&quot;, # The occupation; for example, `carpenter`.
554 },
555 ],
556 &quot;names&quot;: [ # The person&#x27;s names. This field is a singleton for contact sources.
557 { # A person&#x27;s name. If the name is a mononym, the family name is empty.
558 &quot;givenName&quot;: &quot;A String&quot;, # The given name.
559 &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.
560 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the name.
561 &quot;source&quot;: { # The source of a field. # The source of the field.
562 &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.
563 &quot;type&quot;: &quot;A String&quot;, # The source type.
564 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
565 &quot;userTypes&quot;: [ # Output only. The user types.
566 &quot;A String&quot;,
567 ],
568 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
569 },
570 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
571 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
572 },
573 &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.
574 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
575 },
576 &quot;middleName&quot;: &quot;A String&quot;, # The middle name(s).
577 &quot;phoneticHonorificPrefix&quot;: &quot;A String&quot;, # The honorific prefixes spelled as they sound.
578 &quot;honorificSuffix&quot;: &quot;A String&quot;, # The honorific suffixes, such as `Jr.`
579 &quot;phoneticMiddleName&quot;: &quot;A String&quot;, # The middle name(s) spelled as they sound.
580 &quot;familyName&quot;: &quot;A String&quot;, # The family name.
581 &quot;phoneticFullName&quot;: &quot;A String&quot;, # The full name spelled as it sounds.
582 &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.
583 &quot;phoneticGivenName&quot;: &quot;A String&quot;, # The given name spelled as it sounds.
584 &quot;phoneticFamilyName&quot;: &quot;A String&quot;, # The family name spelled as it sounds.
585 &quot;phoneticHonorificSuffix&quot;: &quot;A String&quot;, # The honorific suffixes spelled as they sound.
586 &quot;unstructuredName&quot;: &quot;A String&quot;, # The free form name value.
587 &quot;honorificPrefix&quot;: &quot;A String&quot;, # The honorific prefixes, such as `Mrs.` or `Dr.`
588 },
589 ],
590 &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses.
591 { # A person&#x27;s email address.
592 &quot;displayName&quot;: &quot;A String&quot;, # The display name of the email.
593 &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`
594 &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.
595 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the email address.
596 &quot;source&quot;: { # The source of a field. # The source of the field.
597 &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.
598 &quot;type&quot;: &quot;A String&quot;, # The source type.
599 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
600 &quot;userTypes&quot;: [ # Output only. The user types.
601 &quot;A String&quot;,
602 ],
603 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
604 },
605 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
606 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
607 },
608 &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.
609 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
610 },
611 &quot;value&quot;: &quot;A String&quot;, # The email address.
612 },
613 ],
614 &quot;organizations&quot;: [ # The person&#x27;s past or current organizations.
615 { # A person&#x27;s past or current organization. Overlapping date ranges are permitted.
616 &quot;name&quot;: &quot;A String&quot;, # The name of the organization.
617 &quot;domain&quot;: &quot;A String&quot;, # The domain name associated with the organization; for example, `google.com`.
618 &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.
619 &quot;jobDescription&quot;: &quot;A String&quot;, # The person&#x27;s job description at the organization.
620 &quot;title&quot;: &quot;A String&quot;, # The person&#x27;s job title at the organization.
621 &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`
622 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the organization.
623 &quot;source&quot;: { # The source of a field. # The source of the field.
624 &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.
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;userTypes&quot;: [ # Output only. The user types.
628 &quot;A String&quot;,
629 ],
630 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
631 },
632 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
633 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
634 },
635 &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.
636 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
637 },
638 &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.
639 &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.
640 &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.
641 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
642 },
643 &quot;department&quot;: &quot;A String&quot;, # The person&#x27;s department at the organization.
644 &quot;symbol&quot;: &quot;A String&quot;, # The symbol associated with the organization; for example, a stock ticker symbol, abbreviation, or acronym.
645 &quot;location&quot;: &quot;A String&quot;, # The location of the organization office the person works at.
646 &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.
647 &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.
648 &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.
649 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
650 },
651 &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.
652 &quot;phoneticName&quot;: &quot;A String&quot;, # The phonetic name of the organization.
653 },
654 ],
655 &quot;calendarUrls&quot;: [ # The person&#x27;s calendar URLs.
656 { # A person&#x27;s calendar URL.
657 &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.
658 &quot;url&quot;: &quot;A String&quot;, # The calendar URL.
659 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the calendar URL.
660 &quot;source&quot;: { # The source of a field. # The source of the field.
661 &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.
662 &quot;type&quot;: &quot;A String&quot;, # The source type.
663 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
664 &quot;userTypes&quot;: [ # Output only. The user types.
665 &quot;A String&quot;,
666 ],
667 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
668 },
669 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
670 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
671 },
672 &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.
673 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
674 },
675 &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`
676 },
677 ],
678 &quot;taglines&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s taglines.
679 { # **DEPRECATED**: No data will be returned A brief one-line description of the person.
680 &quot;value&quot;: &quot;A String&quot;, # The tagline.
681 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the tagline.
682 &quot;source&quot;: { # The source of a field. # The source of the field.
683 &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.
684 &quot;type&quot;: &quot;A String&quot;, # The source type.
685 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
686 &quot;userTypes&quot;: [ # Output only. The user types.
687 &quot;A String&quot;,
688 ],
689 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
690 },
691 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
692 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
693 },
694 &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.
695 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
696 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700697 },
698 ],
699 &quot;biographies&quot;: [ # The person&#x27;s biographies. This field is a singleton for contact sources.
700 { # A person&#x27;s short biography.
701 &quot;contentType&quot;: &quot;A String&quot;, # The content type of the biography.
702 &quot;value&quot;: &quot;A String&quot;, # The short biography.
703 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the biography.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700704 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700705 &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 Botc2228be2020-11-24 15:48:03 -0800706 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700707 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700708 &quot;userTypes&quot;: [ # Output only. The user types.
709 &quot;A String&quot;,
710 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800711 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700712 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800713 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700714 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
715 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800716 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700717 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
718 },
719 },
720 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800721 &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}`.
722 &quot;miscKeywords&quot;: [ # The person&#x27;s miscellaneous keywords.
723 { # A person&#x27;s miscellaneous keyword.
724 &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.
725 &quot;type&quot;: &quot;A String&quot;, # The miscellaneous keyword type.
726 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the miscellaneous keyword.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700727 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700728 &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 Botc2228be2020-11-24 15:48:03 -0800729 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700730 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700731 &quot;userTypes&quot;: [ # Output only. The user types.
732 &quot;A String&quot;,
733 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800734 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700735 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800736 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700737 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
738 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800739 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700740 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
741 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800742 &quot;value&quot;: &quot;A String&quot;, # The value of the miscellaneous keyword.
743 },
744 ],
745 &quot;events&quot;: [ # The person&#x27;s events.
746 { # An event related to the person.
747 &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.
748 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the event.
749 &quot;source&quot;: { # The source of a field. # The source of the field.
750 &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.
751 &quot;type&quot;: &quot;A String&quot;, # The source type.
752 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
753 &quot;userTypes&quot;: [ # Output only. The user types.
754 &quot;A String&quot;,
755 ],
756 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
757 },
758 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
759 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
760 },
761 &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.
762 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
763 },
764 &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.
765 &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.
766 &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.
767 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
768 },
769 &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`
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700770 },
771 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700772 &quot;memberships&quot;: [ # The person&#x27;s group memberships.
773 { # A person&#x27;s membership in a group. Only contact group memberships can be modified.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800774 &quot;domainMembership&quot;: { # A G Suite Domain membership. # Output only. The domain membership.
775 &quot;inViewerDomain&quot;: True or False, # True if the person is in the viewer&#x27;s G Suite domain.
776 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700777 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the membership.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700778 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700779 &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 Botc2228be2020-11-24 15:48:03 -0800780 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700781 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700782 &quot;userTypes&quot;: [ # Output only. The user types.
783 &quot;A String&quot;,
784 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800785 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700786 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800787 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700788 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
789 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800790 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700791 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
792 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700793 &quot;contactGroupMembership&quot;: { # A Google contact group membership. # The contact group membership.
794 &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.
795 &quot;contactGroupId&quot;: &quot;A String&quot;, # Output only. The contact group ID for the contact group membership.
796 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700797 },
798 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800799 &quot;addresses&quot;: [ # The person&#x27;s street addresses.
800 { # A person&#x27;s physical address. May be a P.O. box or street address. All fields are optional.
801 &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`
802 &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.
803 &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.
804 &quot;city&quot;: &quot;A String&quot;, # The city of the address.
805 &quot;country&quot;: &quot;A String&quot;, # The country of the address.
806 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the address.
807 &quot;source&quot;: { # The source of a field. # The source of the field.
808 &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.
809 &quot;type&quot;: &quot;A String&quot;, # The source type.
810 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
811 &quot;userTypes&quot;: [ # Output only. The user types.
812 &quot;A String&quot;,
813 ],
814 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
815 },
816 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
817 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
818 },
819 &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.
820 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
821 },
822 &quot;postalCode&quot;: &quot;A String&quot;, # The postal code of the address.
823 &quot;extendedAddress&quot;: &quot;A String&quot;, # The extended address of the address; for example, the apartment number.
824 &quot;poBox&quot;: &quot;A String&quot;, # The P.O. box of the address.
825 &quot;streetAddress&quot;: &quot;A String&quot;, # The street address.
826 &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.
827 &quot;region&quot;: &quot;A String&quot;, # The region of the address; for example, the state or province.
828 },
829 ],
830 &quot;photos&quot;: [ # Output only. The person&#x27;s photos.
831 { # A person&#x27;s photo. A picture shown next to the person&#x27;s name to help others recognize the person.
832 &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
833 &quot;default&quot;: True or False, # True if the photo is a default photo; false if the photo is a user-provided photo.
834 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the photo.
835 &quot;source&quot;: { # The source of a field. # The source of the field.
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;type&quot;: &quot;A String&quot;, # The source type.
838 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
839 &quot;userTypes&quot;: [ # Output only. The user types.
840 &quot;A String&quot;,
841 ],
842 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
843 },
844 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
845 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
846 },
847 &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.
848 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
849 },
850 },
851 ],
852 &quot;clientData&quot;: [ # The person&#x27;s client data.
853 { # Arbitrary client data that is populated by clients. Duplicate keys and values are allowed.
854 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the client data.
855 &quot;source&quot;: { # The source of a field. # The source of the field.
856 &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.
857 &quot;type&quot;: &quot;A String&quot;, # The source type.
858 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
859 &quot;userTypes&quot;: [ # Output only. The user types.
860 &quot;A String&quot;,
861 ],
862 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
863 },
864 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
865 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
866 },
867 &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.
868 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
869 },
870 &quot;key&quot;: &quot;A String&quot;, # The client specified key of the client data.
871 &quot;value&quot;: &quot;A String&quot;, # The client specified value of the client data.
872 },
873 ],
874 &quot;interests&quot;: [ # The person&#x27;s interests.
875 { # One of the person&#x27;s interests.
876 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the interest.
877 &quot;source&quot;: { # The source of a field. # The source of the field.
878 &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.
879 &quot;type&quot;: &quot;A String&quot;, # The source type.
880 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
881 &quot;userTypes&quot;: [ # Output only. The user types.
882 &quot;A String&quot;,
883 ],
884 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
885 },
886 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
887 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
888 },
889 &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.
890 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
891 },
892 &quot;value&quot;: &quot;A String&quot;, # The interest; for example, `stargazing`.
893 },
894 ],
895 &quot;birthdays&quot;: [ # The person&#x27;s birthdays. This field is a singleton for contact sources.
896 { # 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.
897 &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.
898 &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.
899 &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.
900 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
901 },
902 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the birthday.
903 &quot;source&quot;: { # The source of a field. # The source of the field.
904 &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.
905 &quot;type&quot;: &quot;A String&quot;, # The source type.
906 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
907 &quot;userTypes&quot;: [ # Output only. The user types.
908 &quot;A String&quot;,
909 ],
910 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
911 },
912 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
913 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
914 },
915 &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.
916 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
917 },
918 &quot;text&quot;: &quot;A String&quot;, # A free-form string representing the user&#x27;s birthday.
919 },
920 ],
921 &quot;relationshipStatuses&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s relationship statuses.
922 { # **DEPRECATED**: No data will be returned A person&#x27;s relationship status.
923 &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`
924 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relationship status.
925 &quot;source&quot;: { # The source of a field. # The source of the field.
926 &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.
927 &quot;type&quot;: &quot;A String&quot;, # The source type.
928 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
929 &quot;userTypes&quot;: [ # Output only. The user types.
930 &quot;A String&quot;,
931 ],
932 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
933 },
934 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
935 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
936 },
937 &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.
938 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
939 },
940 &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.
941 },
942 ],
943 &quot;metadata&quot;: { # The metadata about a person. # Output only. Metadata about the person.
944 &quot;linkedPeopleResourceNames&quot;: [ # Output only. Resource names of people linked to this resource.
945 &quot;A String&quot;,
946 ],
947 &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.
948 &quot;A String&quot;,
949 ],
950 &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.
951 &quot;sources&quot;: [ # The sources of data for the person.
952 { # The source of a field.
953 &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.
954 &quot;type&quot;: &quot;A String&quot;, # The source type.
955 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
956 &quot;userTypes&quot;: [ # Output only. The user types.
957 &quot;A String&quot;,
958 ],
959 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
960 },
961 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
962 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
963 },
964 ],
965 &quot;objectType&quot;: &quot;A String&quot;, # Output only. **DEPRECATED** (Please use `person.metadata.sources.profileMetadata.objectType` instead) The type of the person object.
966 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700967 },
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800968 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800969 &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`.
970 &quot;totalPeople&quot;: 42, # **DEPRECATED** (Please use totalItems) The total number of people in the list without pagination.
971 &quot;totalItems&quot;: 42, # The total number of items in the list without pagination.
972 &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.
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>