blob: 418e7934f8334cbda24115c07ae17a7e41e62bab [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">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070078 <code><a href="#list">list(resourceName, pageSize=None, pageToken=None, requestSyncToken=None, syncToken=None, sources=None, requestMask_includeField=None, personFields=None, sortOrder=None, x__xgafv=None)</a></code></p>
79<p class="firstline">Provides a list of the authenticated user's contacts. The request throws a 400 error if 'personFields' is not specified.</p>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080080<p class="toc_element">
81 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
82<p class="firstline">Retrieves the next page of results.</p>
83<h3>Method Details</h3>
84<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070085 <code class="details" id="list">list(resourceName, pageSize=None, pageToken=None, requestSyncToken=None, syncToken=None, sources=None, requestMask_includeField=None, personFields=None, sortOrder=None, x__xgafv=None)</code>
86 <pre>Provides a list of the authenticated user&#x27;s contacts. The request throws a 400 error if &#x27;personFields&#x27; is not specified.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080087
88Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070089 resourceName: string, Required. The resource name to return connections for. Only `people/me` is valid. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -070090 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.
91 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.
92 requestSyncToken: boolean, Optional. Whether the response should include `next_sync_token`, 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.
93 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.
94 sources: string, Optional. A mask of what source types to return. Defaults to ReadSourceType.CONTACT and ReadSourceType.PROFILE if not set. (repeated)
95 Allowed values
96 READ_SOURCE_TYPE_UNSPECIFIED - Unspecified.
97 READ_SOURCE_TYPE_PROFILE - Returns SourceType.ACCOUNT, SourceType.DOMAIN_PROFILE, and SourceType.PROFILE.
98 READ_SOURCE_TYPE_CONTACT - Returns SourceType.CONTACT.
99 READ_SOURCE_TYPE_DOMAIN_CONTACT - Returns SourceType.DOMAIN_CONTACT.
100 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`.
101 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 * coverPhotos * emailAddresses * events * genders * imClients * interests * locales * memberships * metadata * names * nicknames * occupations * organizations * phoneNumbers * photos * relations * residences * sipAddresses * skills * urls * userDefined
102 sortOrder: string, Optional. The order in which the connections should be sorted. Defaults to `LAST_MODIFIED_ASCENDING`.
103 Allowed values
104 LAST_MODIFIED_ASCENDING - Sort people by when they were changed; older entries first.
105 LAST_MODIFIED_DESCENDING - Sort people by when they were changed; newer entries first.
106 FIRST_NAME_ASCENDING - Sort people by first name.
107 LAST_NAME_ASCENDING - Sort people by last name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700108 x__xgafv: string, V1 error format.
109 Allowed values
110 1 - v1 error format
111 2 - v2 error format
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800112
113Returns:
114 An object of the form:
115
Bu Sun Kim65020912020-05-20 12:08:20 -0700116 { # The response to a request for the authenticated user&#x27;s connections.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700117 &quot;totalItems&quot;: 42, # The total number of items in the list without pagination.
118 &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.
119 &quot;totalPeople&quot;: 42, # **DEPRECATED** (Please use totalItems) The total number of people in the list without pagination.
Bu Sun Kim65020912020-05-20 12:08:20 -0700120 &quot;connections&quot;: [ # The list of people that the requestor is connected to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700121 { # 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.
122 &quot;taglines&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s taglines.
123 { # **DEPRECATED**: No data will be returned A brief one-line description of the person.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700124 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the tagline.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700125 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700126 &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.
127 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
128 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700129 &quot;userTypes&quot;: [ # Output only. The user types.
130 &quot;A String&quot;,
131 ],
132 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
133 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700134 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700135 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700136 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700137 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
138 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700139 },
140 &quot;value&quot;: &quot;A String&quot;, # The tagline.
141 },
142 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700143 &quot;relationshipStatuses&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s relationship statuses.
144 { # **DEPRECATED**: No data will be returned A person&#x27;s relationship status.
145 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relationship status.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700146 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700147 &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.
148 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
149 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700150 &quot;userTypes&quot;: [ # Output only. The user types.
151 &quot;A String&quot;,
152 ],
153 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
154 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700155 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700156 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700157 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700158 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
159 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700160 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700161 &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`
162 &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.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700163 },
164 ],
165 &quot;locales&quot;: [ # The person&#x27;s locale preferences.
166 { # A person&#x27;s locale preference.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700167 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the locale.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700168 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700169 &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.
170 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
171 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700172 &quot;userTypes&quot;: [ # Output only. The user types.
173 &quot;A String&quot;,
174 ],
175 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
176 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700177 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700178 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700179 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700180 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
181 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700182 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700183 &quot;value&quot;: &quot;A String&quot;, # The well-formed [IETF BCP 47](https://tools.ietf.org/html/bcp47) language tag representing the locale.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700184 },
185 ],
186 &quot;interests&quot;: [ # The person&#x27;s interests.
187 { # One of the person&#x27;s interests.
188 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the interest.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700189 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700190 &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.
191 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
192 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700193 &quot;userTypes&quot;: [ # Output only. The user types.
194 &quot;A String&quot;,
195 ],
196 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
197 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700198 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700199 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700200 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700201 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
202 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700203 },
204 &quot;value&quot;: &quot;A String&quot;, # The interest; for example, `stargazing`.
205 },
206 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700207 &quot;nicknames&quot;: [ # The person&#x27;s nicknames.
208 { # A person&#x27;s nickname.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700209 &quot;type&quot;: &quot;A String&quot;, # The type of the nickname.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700210 &quot;value&quot;: &quot;A String&quot;, # The nickname.
211 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the nickname.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700212 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700213 &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.
214 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
215 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700216 &quot;userTypes&quot;: [ # Output only. The user types.
217 &quot;A String&quot;,
218 ],
219 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
220 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700221 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700222 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700223 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700224 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
225 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700226 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700227 },
228 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700229 &quot;organizations&quot;: [ # The person&#x27;s past or current organizations.
230 { # A person&#x27;s past or current organization. Overlapping date ranges are permitted.
231 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the organization.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700232 &quot;source&quot;: { # The source of a field. # The source of the field.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700233 &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.
234 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
235 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700236 &quot;userTypes&quot;: [ # Output only. The user types.
237 &quot;A String&quot;,
238 ],
239 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
240 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700241 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700242 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700243 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700244 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
245 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700246 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700247 &quot;name&quot;: &quot;A String&quot;, # The name of the organization.
248 &quot;department&quot;: &quot;A String&quot;, # The person&#x27;s department at the organization.
249 &quot;domain&quot;: &quot;A String&quot;, # The domain name associated with the organization; for example, `google.com`.
250 &quot;startDate&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. This can represent: * A full date, with non-zero year, month and day values * A month and day value, with a zero year, e.g. an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, e.g. a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The start date when the person joined the organization.
251 &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without a year.
252 &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a year by itself or a year and month where the day is not significant.
253 &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a month and day.
254 },
255 &quot;jobDescription&quot;: &quot;A String&quot;, # The person&#x27;s job description at the organization.
256 &quot;phoneticName&quot;: &quot;A String&quot;, # The phonetic name of the organization.
257 &quot;title&quot;: &quot;A String&quot;, # The person&#x27;s job title at the organization.
258 &quot;location&quot;: &quot;A String&quot;, # The location of the organization office the person works at.
259 &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`
260 &quot;endDate&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. This can represent: * A full date, with non-zero year, month and day values * A month and day value, with a zero year, e.g. an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, e.g. a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The end date when the person left the organization.
261 &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without a year.
262 &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a year by itself or a year and month where the day is not significant.
263 &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a month and day.
264 },
265 &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.
266 &quot;symbol&quot;: &quot;A String&quot;, # The symbol associated with the organization; for example, a stock ticker symbol, abbreviation, or acronym.
267 &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.
268 },
269 ],
270 &quot;coverPhotos&quot;: [ # Output only. The person&#x27;s cover photos.
271 { # 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.
272 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the cover photo.
273 &quot;source&quot;: { # The source of a field. # The source of the field.
274 &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.
275 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
276 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
277 &quot;userTypes&quot;: [ # Output only. The user types.
278 &quot;A String&quot;,
279 ],
280 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
281 },
282 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
283 &quot;type&quot;: &quot;A String&quot;, # The source type.
284 },
285 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
286 &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.
287 },
288 &quot;url&quot;: &quot;A String&quot;, # The URL of the cover photo.
289 &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.
290 },
291 ],
292 &quot;biographies&quot;: [ # The person&#x27;s biographies.
293 { # A person&#x27;s short biography.
294 &quot;contentType&quot;: &quot;A String&quot;, # The content type of the biography.
295 &quot;value&quot;: &quot;A String&quot;, # The short biography.
296 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the biography.
297 &quot;source&quot;: { # The source of a field. # The source of the field.
298 &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.
299 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
300 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
301 &quot;userTypes&quot;: [ # Output only. The user types.
302 &quot;A String&quot;,
303 ],
304 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
305 },
306 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
307 &quot;type&quot;: &quot;A String&quot;, # The source type.
308 },
309 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
310 &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.
311 },
312 },
313 ],
314 &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers.
315 { # A person&#x27;s phone number.
316 &quot;value&quot;: &quot;A String&quot;, # The phone number.
317 &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.
318 &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`
319 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the phone number.
320 &quot;source&quot;: { # The source of a field. # The source of the field.
321 &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.
322 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
323 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
324 &quot;userTypes&quot;: [ # Output only. The user types.
325 &quot;A String&quot;,
326 ],
327 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
328 },
329 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
330 &quot;type&quot;: &quot;A String&quot;, # The source type.
331 },
332 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
333 &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 },
335 &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.
336 },
337 ],
338 &quot;names&quot;: [ # The person&#x27;s names.
339 { # A person&#x27;s name. If the name is a mononym, the family name is empty.
340 &quot;unstructuredName&quot;: &quot;A String&quot;, # The free form name value.
341 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the name.
342 &quot;source&quot;: { # The source of a field. # The source of the field.
343 &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.
344 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
345 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
346 &quot;userTypes&quot;: [ # Output only. The user types.
347 &quot;A String&quot;,
348 ],
349 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
350 },
351 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
352 &quot;type&quot;: &quot;A String&quot;, # The source type.
353 },
354 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
355 &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.
356 },
357 &quot;phoneticFamilyName&quot;: &quot;A String&quot;, # The family name spelled as it sounds.
358 &quot;honorificSuffix&quot;: &quot;A String&quot;, # The honorific suffixes, such as `Jr.`
359 &quot;familyName&quot;: &quot;A String&quot;, # The family name.
360 &quot;givenName&quot;: &quot;A String&quot;, # The given name.
361 &quot;phoneticHonorificPrefix&quot;: &quot;A String&quot;, # The honorific prefixes spelled as they sound.
362 &quot;phoneticMiddleName&quot;: &quot;A String&quot;, # The middle name(s) spelled as they sound.
363 &quot;phoneticGivenName&quot;: &quot;A String&quot;, # The given name spelled as it sounds.
364 &quot;phoneticFullName&quot;: &quot;A String&quot;, # The full name spelled as it sounds.
365 &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.
366 &quot;middleName&quot;: &quot;A String&quot;, # The middle name(s).
367 &quot;phoneticHonorificSuffix&quot;: &quot;A String&quot;, # The honorific suffixes spelled as they sound.
368 &quot;honorificPrefix&quot;: &quot;A String&quot;, # The honorific prefixes, such as `Mrs.` or `Dr.`
369 &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.
370 },
371 ],
372 &quot;imClients&quot;: [ # The person&#x27;s instant messaging clients.
373 { # A person&#x27;s instant messaging client.
374 &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`
375 &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.
376 &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.
377 &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`
378 &quot;username&quot;: &quot;A String&quot;, # The user name used in the IM client.
379 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the IM client.
380 &quot;source&quot;: { # The source of a field. # The source of the field.
381 &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.
382 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
383 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
384 &quot;userTypes&quot;: [ # Output only. The user types.
385 &quot;A String&quot;,
386 ],
387 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
388 },
389 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
390 &quot;type&quot;: &quot;A String&quot;, # The source type.
391 },
392 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
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 },
395 },
396 ],
397 &quot;urls&quot;: [ # The person&#x27;s associated URLs.
398 { # A person&#x27;s associated URLs.
399 &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.
400 &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 Google+ application. * `other`
401 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the URL.
402 &quot;source&quot;: { # The source of a field. # The source of the field.
403 &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.
404 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
405 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
406 &quot;userTypes&quot;: [ # Output only. The user types.
407 &quot;A String&quot;,
408 ],
409 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
410 },
411 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
412 &quot;type&quot;: &quot;A String&quot;, # The source type.
413 },
414 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
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 },
417 &quot;value&quot;: &quot;A String&quot;, # The URL.
418 },
419 ],
420 &quot;ageRanges&quot;: [ # Output only. The person&#x27;s age ranges.
421 { # A person&#x27;s age range.
422 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the age range.
423 &quot;source&quot;: { # The source of a field. # The source of the field.
424 &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.
425 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
426 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
427 &quot;userTypes&quot;: [ # Output only. The user types.
428 &quot;A String&quot;,
429 ],
430 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
431 },
432 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
433 &quot;type&quot;: &quot;A String&quot;, # The source type.
434 },
435 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
436 &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.
437 },
438 &quot;ageRange&quot;: &quot;A String&quot;, # The age range.
439 },
440 ],
441 &quot;occupations&quot;: [ # The person&#x27;s occupations.
442 { # A person&#x27;s occupation.
443 &quot;value&quot;: &quot;A String&quot;, # The occupation; for example, `carpenter`.
444 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the occupation.
445 &quot;source&quot;: { # The source of a field. # The source of the field.
446 &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.
447 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
448 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
449 &quot;userTypes&quot;: [ # Output only. The user types.
450 &quot;A String&quot;,
451 ],
452 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
453 },
454 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
455 &quot;type&quot;: &quot;A String&quot;, # The source type.
456 },
457 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
458 &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.
459 },
460 },
461 ],
462 &quot;photos&quot;: [ # Output only. The person&#x27;s photos.
463 { # A person&#x27;s photo. A picture shown next to the person&#x27;s name to help others recognize the person.
464 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the photo.
465 &quot;source&quot;: { # The source of a field. # The source of the field.
466 &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.
467 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
468 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
469 &quot;userTypes&quot;: [ # Output only. The user types.
470 &quot;A String&quot;,
471 ],
472 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
473 },
474 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
475 &quot;type&quot;: &quot;A String&quot;, # The source type.
476 },
477 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
478 &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.
479 },
480 &quot;default&quot;: True or False, # True if the photo is a default photo; false if the photo is a user-provided photo.
481 &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
482 },
483 ],
484 &quot;userDefined&quot;: [ # The person&#x27;s user defined data.
485 { # Arbitrary user data that is populated by the end users.
486 &quot;key&quot;: &quot;A String&quot;, # The end user specified key of the user defined data.
487 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the user defined data.
488 &quot;source&quot;: { # The source of a field. # The source of the field.
489 &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.
490 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
491 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
492 &quot;userTypes&quot;: [ # Output only. The user types.
493 &quot;A String&quot;,
494 ],
495 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
496 },
497 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
498 &quot;type&quot;: &quot;A String&quot;, # The source type.
499 },
500 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
501 &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.
502 },
503 &quot;value&quot;: &quot;A String&quot;, # The end user specified value of the user defined data.
504 },
505 ],
506 &quot;relations&quot;: [ # The person&#x27;s relations.
507 { # A person&#x27;s relation to another person.
508 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relation.
509 &quot;source&quot;: { # The source of a field. # The source of the field.
510 &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.
511 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
512 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
513 &quot;userTypes&quot;: [ # Output only. The user types.
514 &quot;A String&quot;,
515 ],
516 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
517 },
518 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
519 &quot;type&quot;: &quot;A String&quot;, # The source type.
520 },
521 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
522 &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.
523 },
524 &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`
525 &quot;person&quot;: &quot;A String&quot;, # The name of the other person this relation refers to.
526 &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.
527 },
528 ],
529 &quot;events&quot;: [ # The person&#x27;s events.
530 { # An event related to the person.
531 &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`
532 &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.
533 &quot;date&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. This can represent: * A full date, with non-zero year, month and day values * A month and day value, with a zero year, e.g. an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, e.g. a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The date of the event.
534 &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without a year.
535 &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a year by itself or a year and month where the day is not significant.
536 &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a month and day.
537 },
538 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the event.
539 &quot;source&quot;: { # The source of a field. # The source of the field.
540 &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.
541 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
542 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
543 &quot;userTypes&quot;: [ # Output only. The user types.
544 &quot;A String&quot;,
545 ],
546 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
547 },
548 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
549 &quot;type&quot;: &quot;A String&quot;, # The source type.
550 },
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;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.
553 },
554 },
555 ],
556 &quot;birthdays&quot;: [ # The person&#x27;s birthdays.
557 { # 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.
558 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the birthday.
559 &quot;source&quot;: { # The source of a field. # The source of the field.
560 &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.
561 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
562 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
563 &quot;userTypes&quot;: [ # Output only. The user types.
564 &quot;A String&quot;,
565 ],
566 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
567 },
568 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
569 &quot;type&quot;: &quot;A String&quot;, # The source type.
570 },
571 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
572 &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.
573 },
574 &quot;date&quot;: { # Represents a whole or partial calendar date, e.g. a birthday. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. This can represent: * A full date, with non-zero year, month and day values * A month and day value, with a zero year, e.g. an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, e.g. a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # The date of the birthday.
575 &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999, or 0 if specifying a date without a year.
576 &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a year by itself or a year and month where the day is not significant.
577 &quot;month&quot;: 42, # Month of year. Must be from 1 to 12, or 0 if specifying a year without a month and day.
578 },
579 &quot;text&quot;: &quot;A String&quot;, # A free-form string representing the user&#x27;s birthday.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700580 },
581 ],
582 &quot;metadata&quot;: { # The metadata about a person. # Output only. Metadata about the person.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700583 &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.
584 &quot;A String&quot;,
585 ],
586 &quot;objectType&quot;: &quot;A String&quot;, # Output only. **DEPRECATED** (Please use `person.metadata.sources.profileMetadata.objectType` instead) The type of the person object.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700587 &quot;linkedPeopleResourceNames&quot;: [ # Output only. Resource names of people linked to this resource.
588 &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700589 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700590 &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.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700591 &quot;sources&quot;: [ # The sources of data for the person.
592 { # The source of a field.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700593 &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.
594 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
595 &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 Kim4ed7d3f2020-05-27 12:20:54 -0700596 &quot;userTypes&quot;: [ # Output only. The user types.
597 &quot;A String&quot;,
598 ],
599 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
600 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700601 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700602 &quot;type&quot;: &quot;A String&quot;, # The source type.
Bu Sun Kim65020912020-05-20 12:08:20 -0700603 },
604 ],
605 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700606 &quot;sipAddresses&quot;: [ # The person&#x27;s SIP addresses.
607 { # A person&#x27;s SIP address. Session Initial Protocol addresses are used for VoIP communications to make voice or video calls over the internet.
608 &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`
609 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the SIP address.
610 &quot;source&quot;: { # The source of a field. # The source of the field.
611 &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.
612 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
613 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
614 &quot;userTypes&quot;: [ # Output only. The user types.
615 &quot;A String&quot;,
616 ],
617 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
618 },
619 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
620 &quot;type&quot;: &quot;A String&quot;, # The source type.
621 },
622 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
623 &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.
624 },
625 &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.
626 &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.
627 },
628 ],
629 &quot;braggingRights&quot;: [ # **DEPRECATED**: No data will be returned The person&#x27;s bragging rights.
630 { # **DEPRECATED**: No data will be returned A person&#x27;s bragging rights.
631 &quot;value&quot;: &quot;A String&quot;, # The bragging rights; for example, `climbed mount everest`.
632 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the bragging rights.
633 &quot;source&quot;: { # The source of a field. # The source of the field.
634 &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.
635 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
636 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
637 &quot;userTypes&quot;: [ # Output only. The user types.
638 &quot;A String&quot;,
639 ],
640 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
641 },
642 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
643 &quot;type&quot;: &quot;A String&quot;, # The source type.
644 },
645 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
646 &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.
647 },
648 },
649 ],
650 &quot;memberships&quot;: [ # The person&#x27;s group memberships.
651 { # A person&#x27;s membership in a group. Only contact group memberships can be modified.
652 &quot;domainMembership&quot;: { # A G Suite Domain membership. # Output only. The domain membership.
653 &quot;inViewerDomain&quot;: True or False, # True if the person is in the viewer&#x27;s G Suite domain.
654 },
655 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the membership.
656 &quot;source&quot;: { # The source of a field. # The source of the field.
657 &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.
658 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
659 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
660 &quot;userTypes&quot;: [ # Output only. The user types.
661 &quot;A String&quot;,
662 ],
663 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
664 },
665 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
666 &quot;type&quot;: &quot;A String&quot;, # The source type.
667 },
668 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
669 &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.
670 },
671 &quot;contactGroupMembership&quot;: { # A Google contact group membership. # The contact group membership.
672 &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.
673 &quot;contactGroupId&quot;: &quot;A String&quot;, # Output only. The contact group ID for the contact group membership.
674 },
675 },
676 ],
677 &quot;ageRange&quot;: &quot;A String&quot;, # Output only. **DEPRECATED** (Please use `person.ageRanges` instead) The person&#x27;s age range.
678 &quot;fileAses&quot;: [ # The person&#x27;s file-ases.
679 { # The name that should be used to sort the person in a list.
680 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the file-as.
681 &quot;source&quot;: { # The source of a field. # The source of the field.
682 &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.
683 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
684 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
685 &quot;userTypes&quot;: [ # Output only. The user types.
686 &quot;A String&quot;,
687 ],
688 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
689 },
690 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
691 &quot;type&quot;: &quot;A String&quot;, # The source type.
692 },
693 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
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 },
696 &quot;value&quot;: &quot;A String&quot;, # The file-as value
697 },
698 ],
699 &quot;genders&quot;: [ # The person&#x27;s genders.
700 { # A person&#x27;s gender.
701 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the gender.
702 &quot;source&quot;: { # The source of a field. # The source of the field.
703 &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.
704 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
705 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
706 &quot;userTypes&quot;: [ # Output only. The user types.
707 &quot;A String&quot;,
708 ],
709 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
710 },
711 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
712 &quot;type&quot;: &quot;A String&quot;, # The source type.
713 },
714 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
715 &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.
716 },
717 &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.
718 &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`
719 &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`
720 },
721 ],
722 &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses.
723 { # A person&#x27;s email address.
724 &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.
725 &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`
726 &quot;value&quot;: &quot;A String&quot;, # The email address.
727 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the email address.
728 &quot;source&quot;: { # The source of a field. # The source of the field.
729 &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.
730 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
731 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
732 &quot;userTypes&quot;: [ # Output only. The user types.
733 &quot;A String&quot;,
734 ],
735 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
736 },
737 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
738 &quot;type&quot;: &quot;A String&quot;, # The source type.
739 },
740 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
741 &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.
742 },
743 &quot;displayName&quot;: &quot;A String&quot;, # The display name of the email.
744 },
745 ],
746 &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}`.
747 &quot;residences&quot;: [ # The person&#x27;s residences.
748 { # A person&#x27;s past or current residence.
749 &quot;value&quot;: &quot;A String&quot;, # The address of the residence.
750 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the residence.
751 &quot;source&quot;: { # The source of a field. # The source of the field.
752 &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.
753 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
754 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
755 &quot;userTypes&quot;: [ # Output only. The user types.
756 &quot;A String&quot;,
757 ],
758 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
759 },
760 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
761 &quot;type&quot;: &quot;A String&quot;, # The source type.
762 },
763 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
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 },
766 &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.
767 },
768 ],
769 &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.
770 &quot;relationshipInterests&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s relationship interests.
771 { # **DEPRECATED**: No data will be returned A person&#x27;s relationship interest .
772 &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`
773 &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.
774 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relationship interest.
775 &quot;source&quot;: { # The source of a field. # The source of the field.
776 &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.
777 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
778 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
779 &quot;userTypes&quot;: [ # Output only. The user types.
780 &quot;A String&quot;,
781 ],
782 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
783 },
784 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
785 &quot;type&quot;: &quot;A String&quot;, # The source type.
786 },
787 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
788 &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.
789 },
790 },
791 ],
792 &quot;addresses&quot;: [ # The person&#x27;s street addresses.
793 { # A person&#x27;s physical address. May be a P.O. box or street address. All fields are optional.
794 &quot;region&quot;: &quot;A String&quot;, # The region of the address; for example, the state or province.
795 &quot;extendedAddress&quot;: &quot;A String&quot;, # The extended address of the address; for example, the apartment number.
796 &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`
797 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the address.
798 &quot;source&quot;: { # The source of a field. # The source of the field.
799 &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.
800 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
801 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
802 &quot;userTypes&quot;: [ # Output only. The user types.
803 &quot;A String&quot;,
804 ],
805 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
806 },
807 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
808 &quot;type&quot;: &quot;A String&quot;, # The source type.
809 },
810 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
811 &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.
812 },
813 &quot;postalCode&quot;: &quot;A String&quot;, # The postal code of the address.
814 &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.
815 &quot;poBox&quot;: &quot;A String&quot;, # The P.O. box of the address.
816 &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.
817 &quot;streetAddress&quot;: &quot;A String&quot;, # The street address.
818 &quot;country&quot;: &quot;A String&quot;, # The country of the address.
819 &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.
820 &quot;city&quot;: &quot;A String&quot;, # The city of the address.
821 },
822 ],
823 &quot;skills&quot;: [ # The person&#x27;s skills.
824 { # A skill that the person has.
825 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the skill.
826 &quot;source&quot;: { # The source of a field. # The source of the field.
827 &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.
828 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
829 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
830 &quot;userTypes&quot;: [ # Output only. The user types.
831 &quot;A String&quot;,
832 ],
833 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
834 },
835 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
836 &quot;type&quot;: &quot;A String&quot;, # The source type.
837 },
838 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
839 &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.
840 },
841 &quot;value&quot;: &quot;A String&quot;, # The skill; for example, `underwater basket weaving`.
842 },
843 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700844 },
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800845 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700846 &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.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800847 }</pre>
848</div>
849
850<div class="method">
851 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
852 <pre>Retrieves the next page of results.
853
854Args:
855 previous_request: The request for the previous page. (required)
856 previous_response: The response from the request for the previous page. (required)
857
858Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700859 A request object that you can call &#x27;execute()&#x27; on to request the next
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800860 page. Returns None if there are no more items in the collection.
861 </pre>
862</div>
863
864</body></html>