blob: b6c29e2292652b0a49490e8a15c5f87ec6da7bbf [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 Botcc94ec82021-01-15 07:10:04 -080081 <code><a href="#list">list(resourceName, pageSize=None, pageToken=None, personFields=None, requestMask_includeField=None, requestSyncToken=None, sortOrder=None, sources=None, syncToken=None, x__xgafv=None)</a></code></p>
yoshi-code-botb6dc1b92021-03-02 11:49:08 -080082<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 to prevent data drift between clients and the server. To handle a sync token expired error, a request should be sent without `sync_token` to get all contacts.</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 Botcc94ec82021-01-15 07:10:04 -080093 <code class="details" id="list">list(resourceName, pageSize=None, pageToken=None, personFields=None, requestMask_includeField=None, requestSyncToken=None, sortOrder=None, sources=None, syncToken=None, x__xgafv=None)</code>
yoshi-code-botb6dc1b92021-03-02 11:49:08 -080094 <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 to prevent data drift between clients and the server. To handle a sync token expired error, a request should be sent without `sync_token` to get all contacts.
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -080095
96Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070097 resourceName: string, Required. The resource name to return connections for. Only `people/me` is valid. (required)
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -080098 pageSize: integer, Optional. The number of connections to include in the response. Valid values are between 1 and 1000, inclusive. Defaults to 100 if not set or set to 0.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -080099 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.
100 personFields: string, Required. A field mask to restrict which fields on each person are returned. Multiple fields can be specified by separating them with commas. Valid values are: * addresses * ageRanges * biographies * birthdays * calendarUrls * clientData * coverPhotos * emailAddresses * events * externalIds * genders * imClients * interests * locales * locations * memberships * metadata * miscKeywords * names * nicknames * occupations * organizations * phoneNumbers * photos * relations * sipAddresses * skills * urls * userDefined
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800101 requestMask_includeField: string, Required. Comma-separated list of person fields to be included in the response. Each path should start with `person.`: for example, `person.names` or `person.photos`.
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800102 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 full sync requests that specify `request_sync_token` and do not specify `sync_token` have an additional rate limit per user. Each client should generally only be doing a full sync once every few days per user and so should not hit this limit.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800103 sortOrder: string, Optional. The order in which the connections should be sorted. Defaults to `LAST_MODIFIED_ASCENDING`.
104 Allowed values
105 LAST_MODIFIED_ASCENDING - Sort people by when they were changed; older entries first.
106 LAST_MODIFIED_DESCENDING - Sort people by when they were changed; newer entries first.
107 FIRST_NAME_ASCENDING - Sort people by first name.
108 LAST_NAME_ASCENDING - Sort people by last name.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800109 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.
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800115 syncToken: string, Optional. A sync token, received from a previous `ListConnections` call. Provide this to retrieve only the resources changed since the last request. When syncing, all other parameters provided to `ListConnections` except `page_size` and `page_token` must match the initial call that provided the sync token. Sync tokens expire after seven days, after which a full sync request without a `sync_token` should be made.
Bu Sun Kim65020912020-05-20 12:08:20 -0700116 x__xgafv: string, V1 error format.
117 Allowed values
118 1 - v1 error format
119 2 - v2 error format
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800120
121Returns:
122 An object of the form:
123
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 { # The response to a request for the authenticated user&#x27;s connections.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800125 &quot;connections&quot;: [ # The list of people that the requestor is connected to.
126 { # 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.
127 &quot;addresses&quot;: [ # The person&#x27;s street addresses.
128 { # A person&#x27;s physical address. May be a P.O. box or street address. All fields are optional.
129 &quot;city&quot;: &quot;A String&quot;, # The city of the address.
130 &quot;country&quot;: &quot;A String&quot;, # The country of the address.
131 &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.
132 &quot;extendedAddress&quot;: &quot;A String&quot;, # The extended address of the address; for example, the apartment number.
133 &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.
134 &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.
135 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the address.
136 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
137 &quot;source&quot;: { # The source of a field. # The source of the field.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800138 &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.
139 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800140 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
141 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
142 &quot;userTypes&quot;: [ # Output only. The user types.
143 &quot;A String&quot;,
144 ],
145 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800146 &quot;type&quot;: &quot;A String&quot;, # The source type.
147 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800148 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800149 &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.
150 },
151 &quot;poBox&quot;: &quot;A String&quot;, # The P.O. box of the address.
152 &quot;postalCode&quot;: &quot;A String&quot;, # The postal code of the address.
153 &quot;region&quot;: &quot;A String&quot;, # The region of the address; for example, the state or province.
154 &quot;streetAddress&quot;: &quot;A String&quot;, # The street address.
155 &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`
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800156 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800157 ],
158 &quot;ageRange&quot;: &quot;A String&quot;, # Output only. **DEPRECATED** (Please use `person.ageRanges` instead) The person&#x27;s age range.
159 &quot;ageRanges&quot;: [ # Output only. The person&#x27;s age ranges.
160 { # A person&#x27;s age range.
161 &quot;ageRange&quot;: &quot;A String&quot;, # The age range.
162 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the age range.
163 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
164 &quot;source&quot;: { # The source of a field. # The source of the field.
165 &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.
166 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
167 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
168 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
169 &quot;userTypes&quot;: [ # Output only. The user types.
170 &quot;A String&quot;,
171 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800172 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800173 &quot;type&quot;: &quot;A String&quot;, # The source type.
174 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800175 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800176 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800177 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800178 },
179 ],
180 &quot;biographies&quot;: [ # The person&#x27;s biographies. This field is a singleton for contact sources.
181 { # A person&#x27;s short biography.
182 &quot;contentType&quot;: &quot;A String&quot;, # The content type of the biography.
183 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the biography.
184 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
185 &quot;source&quot;: { # The source of a field. # The source of the field.
186 &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.
187 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
188 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
189 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
190 &quot;userTypes&quot;: [ # Output only. The user types.
191 &quot;A String&quot;,
192 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800193 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800194 &quot;type&quot;: &quot;A String&quot;, # The source type.
195 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800196 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800197 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800198 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800199 &quot;value&quot;: &quot;A String&quot;, # The short biography.
200 },
201 ],
202 &quot;birthdays&quot;: [ # The person&#x27;s birthdays. This field is a singleton for contact sources.
203 { # 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.
204 &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.
205 &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.
206 &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.
207 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800208 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800209 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the birthday.
210 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
211 &quot;source&quot;: { # The source of a field. # The source of the field.
212 &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.
213 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
214 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
215 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
216 &quot;userTypes&quot;: [ # Output only. The user types.
217 &quot;A String&quot;,
218 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800219 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800220 &quot;type&quot;: &quot;A String&quot;, # The source type.
221 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800222 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800223 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800224 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800225 &quot;text&quot;: &quot;A String&quot;, # A free-form string representing the user&#x27;s birthday.
226 },
227 ],
228 &quot;braggingRights&quot;: [ # **DEPRECATED**: No data will be returned The person&#x27;s bragging rights.
229 { # **DEPRECATED**: No data will be returned A person&#x27;s bragging rights.
230 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the bragging rights.
231 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
232 &quot;source&quot;: { # The source of a field. # The source of the field.
233 &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.
236 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
237 &quot;userTypes&quot;: [ # Output only. The user types.
238 &quot;A String&quot;,
239 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800240 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800241 &quot;type&quot;: &quot;A String&quot;, # The source type.
242 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800243 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800244 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800245 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800246 &quot;value&quot;: &quot;A String&quot;, # The bragging rights; for example, `climbed mount everest`.
247 },
248 ],
249 &quot;calendarUrls&quot;: [ # The person&#x27;s calendar URLs.
250 { # A person&#x27;s calendar URL.
251 &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.
252 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the calendar URL.
253 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
254 &quot;source&quot;: { # The source of a field. # The source of the field.
255 &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.
256 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
257 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
258 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
259 &quot;userTypes&quot;: [ # Output only. The user types.
260 &quot;A String&quot;,
261 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800262 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800263 &quot;type&quot;: &quot;A String&quot;, # The source type.
264 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800265 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800266 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800267 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800268 &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`
269 &quot;url&quot;: &quot;A String&quot;, # The calendar URL.
270 },
271 ],
272 &quot;clientData&quot;: [ # The person&#x27;s client data.
273 { # Arbitrary client data that is populated by clients. Duplicate keys and values are allowed.
274 &quot;key&quot;: &quot;A String&quot;, # The client specified key of the client data.
275 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the client data.
276 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
277 &quot;source&quot;: { # The source of a field. # The source of the field.
278 &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.
279 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
280 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
281 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
282 &quot;userTypes&quot;: [ # Output only. The user types.
283 &quot;A String&quot;,
284 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800285 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800286 &quot;type&quot;: &quot;A String&quot;, # The source type.
287 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800288 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800289 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800290 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800291 &quot;value&quot;: &quot;A String&quot;, # The client specified value of the client data.
292 },
293 ],
294 &quot;coverPhotos&quot;: [ # Output only. The person&#x27;s cover photos.
295 { # 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.
296 &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.
297 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the cover photo.
298 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
299 &quot;source&quot;: { # The source of a field. # The source of the field.
300 &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.
301 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
302 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
303 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
304 &quot;userTypes&quot;: [ # Output only. The user types.
305 &quot;A String&quot;,
306 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800307 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800308 &quot;type&quot;: &quot;A String&quot;, # The source type.
309 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800310 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800311 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800312 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800313 &quot;url&quot;: &quot;A String&quot;, # The URL of the cover photo.
314 },
315 ],
316 &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses.
317 { # A person&#x27;s email address.
318 &quot;displayName&quot;: &quot;A String&quot;, # The display name of the email.
319 &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.
320 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the email address.
321 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
322 &quot;source&quot;: { # The source of a field. # The source of the field.
323 &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.
324 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
325 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
326 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
327 &quot;userTypes&quot;: [ # Output only. The user types.
328 &quot;A String&quot;,
329 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800330 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800331 &quot;type&quot;: &quot;A String&quot;, # The source type.
332 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800333 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800334 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800335 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800336 &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`
337 &quot;value&quot;: &quot;A String&quot;, # The email address.
338 },
339 ],
340 &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.
341 &quot;events&quot;: [ # The person&#x27;s events.
342 { # An event related to the person.
343 &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.
344 &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.
345 &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.
346 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800347 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800348 &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.
349 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the event.
350 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
351 &quot;source&quot;: { # The source of a field. # The source of the field.
352 &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.
353 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
354 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
355 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
356 &quot;userTypes&quot;: [ # Output only. The user types.
357 &quot;A String&quot;,
358 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800359 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800360 &quot;type&quot;: &quot;A String&quot;, # The source type.
361 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800362 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800363 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800364 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800365 &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`
366 },
367 ],
368 &quot;externalIds&quot;: [ # The person&#x27;s external IDs.
369 { # An identifier from an external entity related to the person.
370 &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.
371 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the external ID.
372 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
373 &quot;source&quot;: { # The source of a field. # The source of the field.
374 &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.
375 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
376 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
377 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
378 &quot;userTypes&quot;: [ # Output only. The user types.
379 &quot;A String&quot;,
380 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800381 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800382 &quot;type&quot;: &quot;A String&quot;, # The source type.
383 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800384 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800385 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800386 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800387 &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`
388 &quot;value&quot;: &quot;A String&quot;, # The value of the external ID.
389 },
390 ],
391 &quot;fileAses&quot;: [ # The person&#x27;s file-ases.
392 { # The name that should be used to sort the person in a list.
393 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the file-as.
394 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
395 &quot;source&quot;: { # The source of a field. # The source of the field.
396 &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.
397 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
398 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
399 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
400 &quot;userTypes&quot;: [ # Output only. The user types.
401 &quot;A String&quot;,
402 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800403 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800404 &quot;type&quot;: &quot;A String&quot;, # The source type.
405 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800406 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800407 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800408 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800409 &quot;value&quot;: &quot;A String&quot;, # The file-as value
410 },
411 ],
412 &quot;genders&quot;: [ # The person&#x27;s genders. This field is a singleton for contact sources.
413 { # A person&#x27;s gender.
414 &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`
415 &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.
416 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the gender.
417 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
418 &quot;source&quot;: { # The source of a field. # The source of the field.
419 &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.
420 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
421 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
422 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
423 &quot;userTypes&quot;: [ # Output only. The user types.
424 &quot;A String&quot;,
425 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800426 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800427 &quot;type&quot;: &quot;A String&quot;, # The source type.
428 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800429 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800430 &quot;verified&quot;: True or False, # Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800431 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800432 &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`
433 },
434 ],
435 &quot;imClients&quot;: [ # The person&#x27;s instant messaging clients.
436 { # A person&#x27;s instant messaging client.
437 &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.
438 &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.
439 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the IM client.
440 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
441 &quot;source&quot;: { # The source of a field. # The source of the field.
442 &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.
443 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
444 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
445 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
446 &quot;userTypes&quot;: [ # Output only. The user types.
447 &quot;A String&quot;,
448 ],
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800449 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800450 &quot;type&quot;: &quot;A String&quot;, # The source type.
451 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800452 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800453 &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.
454 },
455 &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`
456 &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`
457 &quot;username&quot;: &quot;A String&quot;, # The user name used in the IM client.
458 },
459 ],
460 &quot;interests&quot;: [ # The person&#x27;s interests.
461 { # One of the person&#x27;s interests.
462 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the interest.
463 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
464 &quot;source&quot;: { # The source of a field. # The source of the field.
465 &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.
466 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
467 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
468 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
469 &quot;userTypes&quot;: [ # Output only. The user types.
470 &quot;A String&quot;,
471 ],
472 },
473 &quot;type&quot;: &quot;A String&quot;, # The source type.
474 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
475 },
476 &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.
477 },
478 &quot;value&quot;: &quot;A String&quot;, # The interest; for example, `stargazing`.
479 },
480 ],
481 &quot;locales&quot;: [ # The person&#x27;s locale preferences.
482 { # A person&#x27;s locale preference.
483 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the locale.
484 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
485 &quot;source&quot;: { # The source of a field. # The source of the field.
486 &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.
487 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
488 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
489 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
490 &quot;userTypes&quot;: [ # Output only. The user types.
491 &quot;A String&quot;,
492 ],
493 },
494 &quot;type&quot;: &quot;A String&quot;, # The source type.
495 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
496 },
497 &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.
498 },
499 &quot;value&quot;: &quot;A String&quot;, # The well-formed [IETF BCP 47](https://tools.ietf.org/html/bcp47) language tag representing the locale.
500 },
501 ],
502 &quot;locations&quot;: [ # The person&#x27;s locations.
503 { # A person&#x27;s location.
504 &quot;buildingId&quot;: &quot;A String&quot;, # The building identifier.
505 &quot;current&quot;: True or False, # Whether the location is the current location.
506 &quot;deskCode&quot;: &quot;A String&quot;, # The individual desk location.
507 &quot;floor&quot;: &quot;A String&quot;, # The floor name or number.
508 &quot;floorSection&quot;: &quot;A String&quot;, # The floor section in `floor_name`.
509 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the location.
510 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
511 &quot;source&quot;: { # The source of a field. # The source of the field.
512 &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.
513 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
514 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
515 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
516 &quot;userTypes&quot;: [ # Output only. The user types.
517 &quot;A String&quot;,
518 ],
519 },
520 &quot;type&quot;: &quot;A String&quot;, # The source type.
521 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
522 },
523 &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.
524 },
525 &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`
526 &quot;value&quot;: &quot;A String&quot;, # The free-form value of the location.
527 },
528 ],
529 &quot;memberships&quot;: [ # The person&#x27;s group memberships.
530 { # A person&#x27;s membership in a group. Only contact group memberships can be modified.
531 &quot;contactGroupMembership&quot;: { # A Google contact group membership. # The contact group membership.
532 &quot;contactGroupId&quot;: &quot;A String&quot;, # Output only. The contact group ID for the contact group membership.
533 &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.
534 },
yoshi-code-bot33237a82021-06-09 00:26:03 -0700535 &quot;domainMembership&quot;: { # A Google Workspace Domain membership. # Output only. The domain membership.
536 &quot;inViewerDomain&quot;: True or False, # True if the person is in the viewer&#x27;s Google Workspace domain.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800537 },
538 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the membership.
539 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
540 &quot;source&quot;: { # The source of a field. # The source of the field.
541 &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.
542 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
543 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
544 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
545 &quot;userTypes&quot;: [ # Output only. The user types.
546 &quot;A String&quot;,
547 ],
548 },
549 &quot;type&quot;: &quot;A String&quot;, # The source type.
550 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
551 },
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;metadata&quot;: { # The metadata about a person. # Output only. Metadata about the person.
557 &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.
558 &quot;linkedPeopleResourceNames&quot;: [ # Output only. Resource names of people linked to this resource.
559 &quot;A String&quot;,
560 ],
561 &quot;objectType&quot;: &quot;A String&quot;, # Output only. **DEPRECATED** (Please use `person.metadata.sources.profileMetadata.objectType` instead) The type of the person object.
562 &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.
563 &quot;A String&quot;,
564 ],
565 &quot;sources&quot;: [ # The sources of data for the person.
566 { # The source of a field.
567 &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.
568 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
569 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
570 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
571 &quot;userTypes&quot;: [ # Output only. The user types.
572 &quot;A String&quot;,
573 ],
574 },
575 &quot;type&quot;: &quot;A String&quot;, # The source type.
576 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800577 },
578 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700579 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800580 &quot;miscKeywords&quot;: [ # The person&#x27;s miscellaneous keywords.
581 { # A person&#x27;s miscellaneous keyword.
582 &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.
583 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the miscellaneous keyword.
584 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
585 &quot;source&quot;: { # The source of a field. # The source of the field.
586 &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.
587 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
588 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
589 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
590 &quot;userTypes&quot;: [ # Output only. The user types.
591 &quot;A String&quot;,
592 ],
593 },
594 &quot;type&quot;: &quot;A String&quot;, # The source type.
595 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
596 },
597 &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.
598 },
599 &quot;type&quot;: &quot;A String&quot;, # The miscellaneous keyword type.
600 &quot;value&quot;: &quot;A String&quot;, # The value of the miscellaneous keyword.
601 },
602 ],
603 &quot;names&quot;: [ # The person&#x27;s names. This field is a singleton for contact sources.
604 { # A person&#x27;s name. If the name is a mononym, the family name is empty.
605 &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.
606 &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.
607 &quot;familyName&quot;: &quot;A String&quot;, # The family name.
608 &quot;givenName&quot;: &quot;A String&quot;, # The given name.
609 &quot;honorificPrefix&quot;: &quot;A String&quot;, # The honorific prefixes, such as `Mrs.` or `Dr.`
610 &quot;honorificSuffix&quot;: &quot;A String&quot;, # The honorific suffixes, such as `Jr.`
611 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the name.
612 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
613 &quot;source&quot;: { # The source of a field. # The source of the field.
614 &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.
615 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
616 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
617 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
618 &quot;userTypes&quot;: [ # Output only. The user types.
619 &quot;A String&quot;,
620 ],
621 },
622 &quot;type&quot;: &quot;A String&quot;, # The source type.
623 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
624 },
625 &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.
626 },
627 &quot;middleName&quot;: &quot;A String&quot;, # The middle name(s).
628 &quot;phoneticFamilyName&quot;: &quot;A String&quot;, # The family name spelled as it sounds.
629 &quot;phoneticFullName&quot;: &quot;A String&quot;, # The full name spelled as it sounds.
630 &quot;phoneticGivenName&quot;: &quot;A String&quot;, # The given name spelled as it sounds.
631 &quot;phoneticHonorificPrefix&quot;: &quot;A String&quot;, # The honorific prefixes spelled as they sound.
632 &quot;phoneticHonorificSuffix&quot;: &quot;A String&quot;, # The honorific suffixes spelled as they sound.
633 &quot;phoneticMiddleName&quot;: &quot;A String&quot;, # The middle name(s) spelled as they sound.
634 &quot;unstructuredName&quot;: &quot;A String&quot;, # The free form name value.
635 },
636 ],
637 &quot;nicknames&quot;: [ # The person&#x27;s nicknames.
638 { # A person&#x27;s nickname.
639 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the nickname.
640 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
641 &quot;source&quot;: { # The source of a field. # The source of the field.
642 &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.
643 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
644 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
645 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
646 &quot;userTypes&quot;: [ # Output only. The user types.
647 &quot;A String&quot;,
648 ],
649 },
650 &quot;type&quot;: &quot;A String&quot;, # The source type.
651 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
652 },
653 &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.
654 },
655 &quot;type&quot;: &quot;A String&quot;, # The type of the nickname.
656 &quot;value&quot;: &quot;A String&quot;, # The nickname.
657 },
658 ],
659 &quot;occupations&quot;: [ # The person&#x27;s occupations.
660 { # A person&#x27;s occupation.
661 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the occupation.
662 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
663 &quot;source&quot;: { # The source of a field. # The source of the field.
664 &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.
665 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
666 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
667 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
668 &quot;userTypes&quot;: [ # Output only. The user types.
669 &quot;A String&quot;,
670 ],
671 },
672 &quot;type&quot;: &quot;A String&quot;, # The source type.
673 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
674 },
675 &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.
676 },
677 &quot;value&quot;: &quot;A String&quot;, # The occupation; for example, `carpenter`.
678 },
679 ],
680 &quot;organizations&quot;: [ # The person&#x27;s past or current organizations.
681 { # A person&#x27;s past or current organization. Overlapping date ranges are permitted.
682 &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.
683 &quot;department&quot;: &quot;A String&quot;, # The person&#x27;s department at the organization.
684 &quot;domain&quot;: &quot;A String&quot;, # The domain name associated with the organization; for example, `google.com`.
685 &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.
686 &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.
687 &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.
688 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
689 },
690 &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.
691 &quot;jobDescription&quot;: &quot;A String&quot;, # The person&#x27;s job description at the organization.
692 &quot;location&quot;: &quot;A String&quot;, # The location of the organization office the person works at.
693 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the organization.
694 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
695 &quot;source&quot;: { # The source of a field. # The source of the field.
696 &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.
697 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
698 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
699 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
700 &quot;userTypes&quot;: [ # Output only. The user types.
701 &quot;A String&quot;,
702 ],
703 },
704 &quot;type&quot;: &quot;A String&quot;, # The source type.
705 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
706 },
707 &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.
708 },
709 &quot;name&quot;: &quot;A String&quot;, # The name of the organization.
710 &quot;phoneticName&quot;: &quot;A String&quot;, # The phonetic name of the organization.
711 &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.
712 &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.
713 &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.
714 &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
715 },
716 &quot;symbol&quot;: &quot;A String&quot;, # The symbol associated with the organization; for example, a stock ticker symbol, abbreviation, or acronym.
717 &quot;title&quot;: &quot;A String&quot;, # The person&#x27;s job title at the organization.
718 &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`
719 },
720 ],
721 &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers.
722 { # A person&#x27;s phone number.
723 &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.
724 &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.
725 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the phone number.
726 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
727 &quot;source&quot;: { # The source of a field. # The source of the field.
728 &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.
729 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
730 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
731 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
732 &quot;userTypes&quot;: [ # Output only. The user types.
733 &quot;A String&quot;,
734 ],
735 },
736 &quot;type&quot;: &quot;A String&quot;, # The source type.
737 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
738 },
739 &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.
740 },
741 &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`
742 &quot;value&quot;: &quot;A String&quot;, # The phone number.
743 },
744 ],
745 &quot;photos&quot;: [ # Output only. The person&#x27;s photos.
746 { # A person&#x27;s photo. A picture shown next to the person&#x27;s name to help others recognize the person.
747 &quot;default&quot;: True or False, # True if the photo is a default photo; false if the photo is a user-provided photo.
748 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the photo.
749 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
750 &quot;source&quot;: { # The source of a field. # The source of the field.
751 &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.
752 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
753 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
754 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
755 &quot;userTypes&quot;: [ # Output only. The user types.
756 &quot;A String&quot;,
757 ],
758 },
759 &quot;type&quot;: &quot;A String&quot;, # The source type.
760 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
761 },
762 &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.
763 },
764 &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
765 },
766 ],
767 &quot;relations&quot;: [ # The person&#x27;s relations.
768 { # A person&#x27;s relation to another person.
769 &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.
770 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relation.
771 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
772 &quot;source&quot;: { # The source of a field. # The source of the field.
773 &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.
774 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
775 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
776 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
777 &quot;userTypes&quot;: [ # Output only. The user types.
778 &quot;A String&quot;,
779 ],
780 },
781 &quot;type&quot;: &quot;A String&quot;, # The source type.
782 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
783 },
784 &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.
785 },
786 &quot;person&quot;: &quot;A String&quot;, # The name of the other person this relation refers to.
787 &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`
788 },
789 ],
790 &quot;relationshipInterests&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s relationship interests.
791 { # **DEPRECATED**: No data will be returned A person&#x27;s relationship interest .
792 &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.
793 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relationship interest.
794 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
795 &quot;source&quot;: { # The source of a field. # The source of the field.
796 &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.
797 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
798 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
799 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
800 &quot;userTypes&quot;: [ # Output only. The user types.
801 &quot;A String&quot;,
802 ],
803 },
804 &quot;type&quot;: &quot;A String&quot;, # The source type.
805 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
806 },
807 &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.
808 },
809 &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`
810 },
811 ],
812 &quot;relationshipStatuses&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s relationship statuses.
813 { # **DEPRECATED**: No data will be returned A person&#x27;s relationship status.
814 &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.
815 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the relationship status.
816 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
817 &quot;source&quot;: { # The source of a field. # The source of the field.
818 &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.
819 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
820 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
821 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
822 &quot;userTypes&quot;: [ # Output only. The user types.
823 &quot;A String&quot;,
824 ],
825 },
826 &quot;type&quot;: &quot;A String&quot;, # The source type.
827 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
828 },
829 &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.
830 },
831 &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`
832 },
833 ],
834 &quot;residences&quot;: [ # **DEPRECATED**: (Please use `person.locations` instead) The person&#x27;s residences.
835 { # **DEPRECATED**: Please use `person.locations` instead. A person&#x27;s past or current residence.
836 &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.
837 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the residence.
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;source&quot;: { # The source of a field. # The source of the field.
840 &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.
841 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
842 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
843 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
844 &quot;userTypes&quot;: [ # Output only. The user types.
845 &quot;A String&quot;,
846 ],
847 },
848 &quot;type&quot;: &quot;A String&quot;, # The source type.
849 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
850 },
851 &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.
852 },
853 &quot;value&quot;: &quot;A String&quot;, # The address of the residence.
854 },
855 ],
856 &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}`.
857 &quot;sipAddresses&quot;: [ # The person&#x27;s SIP addresses.
858 { # A person&#x27;s SIP address. Session Initial Protocol addresses are used for VoIP communications to make voice or video calls over the internet.
859 &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.
860 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the SIP address.
861 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
862 &quot;source&quot;: { # The source of a field. # The source of the field.
863 &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.
864 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
865 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
866 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
867 &quot;userTypes&quot;: [ # Output only. The user types.
868 &quot;A String&quot;,
869 ],
870 },
871 &quot;type&quot;: &quot;A String&quot;, # The source type.
872 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
873 },
874 &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.
875 },
876 &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`
877 &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.
878 },
879 ],
880 &quot;skills&quot;: [ # The person&#x27;s skills.
881 { # A skill that the person has.
882 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the skill.
883 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
884 &quot;source&quot;: { # The source of a field. # The source of the field.
885 &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.
886 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
887 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
888 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
889 &quot;userTypes&quot;: [ # Output only. The user types.
890 &quot;A String&quot;,
891 ],
892 },
893 &quot;type&quot;: &quot;A String&quot;, # The source type.
894 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
895 },
896 &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.
897 },
898 &quot;value&quot;: &quot;A String&quot;, # The skill; for example, `underwater basket weaving`.
899 },
900 ],
901 &quot;taglines&quot;: [ # Output only. **DEPRECATED**: No data will be returned The person&#x27;s taglines.
902 { # **DEPRECATED**: No data will be returned A brief one-line description of the person.
903 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the tagline.
904 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
905 &quot;source&quot;: { # The source of a field. # The source of the field.
906 &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.
907 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
908 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
909 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
910 &quot;userTypes&quot;: [ # Output only. The user types.
911 &quot;A String&quot;,
912 ],
913 },
914 &quot;type&quot;: &quot;A String&quot;, # The source type.
915 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
916 },
917 &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.
918 },
919 &quot;value&quot;: &quot;A String&quot;, # The tagline.
920 },
921 ],
922 &quot;urls&quot;: [ # The person&#x27;s associated URLs.
923 { # A person&#x27;s associated URLs.
924 &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.
925 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the URL.
926 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
927 &quot;source&quot;: { # The source of a field. # The source of the field.
928 &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.
929 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
930 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
931 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
932 &quot;userTypes&quot;: [ # Output only. The user types.
933 &quot;A String&quot;,
934 ],
935 },
936 &quot;type&quot;: &quot;A String&quot;, # The source type.
937 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
938 },
939 &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.
940 },
941 &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`
942 &quot;value&quot;: &quot;A String&quot;, # The URL.
943 },
944 ],
945 &quot;userDefined&quot;: [ # The person&#x27;s user defined data.
946 { # Arbitrary user data that is populated by the end users.
947 &quot;key&quot;: &quot;A String&quot;, # The end user specified key of the user defined data.
948 &quot;metadata&quot;: { # Metadata about a field. # Metadata about the user defined data.
949 &quot;primary&quot;: True or False, # True if the field is the primary field; false if the field is a secondary field.
950 &quot;source&quot;: { # The source of a field. # The source of the field.
951 &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.
952 &quot;id&quot;: &quot;A String&quot;, # The unique identifier within the source type generated by the server.
953 &quot;profileMetadata&quot;: { # The metadata about a profile. # Output only. **Only populated in `person.metadata.sources`.** Metadata about a source of type PROFILE.
954 &quot;objectType&quot;: &quot;A String&quot;, # Output only. The profile object type.
955 &quot;userTypes&quot;: [ # Output only. The user types.
956 &quot;A String&quot;,
957 ],
958 },
959 &quot;type&quot;: &quot;A String&quot;, # The source type.
960 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. **Only populated in `person.metadata.sources`.** Last update timestamp of this source.
961 },
962 &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.
963 },
964 &quot;value&quot;: &quot;A String&quot;, # The end user specified value of the user defined data.
965 },
966 ],
967 },
968 ],
969 &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.
970 &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`.
971 &quot;totalItems&quot;: 42, # The total number of items in the list without pagination.
972 &quot;totalPeople&quot;: 42, # **DEPRECATED** (Please use totalItems) The total number of people in the list without pagination.
973}</pre>
Jon Wayne Parrott36e41bc2016-02-19 16:02:29 -0800974</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>