File: cloudsearch_v1.query.html

package info (click to toggle)
python-googleapi 2.180.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 527,124 kB
  • sloc: python: 11,076; javascript: 249; sh: 114; makefile: 59
file content (1047 lines) | stat: -rw-r--r-- 85,111 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
<html><body>
<style>

body, h1, h2, h3, div, span, p, pre, a {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body {
  font-size: 13px;
  padding: 1em;
}

h1 {
  font-size: 26px;
  margin-bottom: 1em;
}

h2 {
  font-size: 24px;
  margin-bottom: 1em;
}

h3 {
  font-size: 20px;
  margin-bottom: 1em;
  margin-top: 1em;
}

pre, code {
  line-height: 1.5;
  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}

pre {
  margin-top: 0.5em;
}

h1, h2, h3, p {
  font-family: Arial, sans serif;
}

h1, h2, h3 {
  border-bottom: solid #CCC 1px;
}

.toc_element {
  margin-top: 0.5em;
}

.firstline {
  margin-left: 2 em;
}

.method  {
  margin-top: 1em;
  border: solid 1px #CCC;
  padding: 1em;
  background: #EEE;
}

.details {
  font-weight: bold;
  font-size: 14px;
}

</style>

<h1><a href="cloudsearch_v1.html">Cloud Search API</a> . <a href="cloudsearch_v1.query.html">query</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
  <code><a href="cloudsearch_v1.query.sources.html">sources()</a></code>
</p>
<p class="firstline">Returns the sources Resource.</p>

<p class="toc_element">
  <code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
  <code><a href="#debugSearch">debugSearch(body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Returns Debug information for Cloud Search Query API provides the search method. **Note:** This API requires a standard end user account to execute. A service account can't perform Query API requests directly; to use a service account to perform queries, set up [Google Workspace domain-wide delegation of authority](https://developers.google.com/cloud-search/docs/guides/delegation/).</p>
<p class="toc_element">
  <code><a href="#removeActivity">removeActivity(body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Provides functionality to remove logged activity for a user. Currently to be used only for Chat 1p clients **Note:** This API requires a standard end user account to execute. A service account can't perform Remove Activity requests directly; to use a service account to perform queries, set up [Google Workspace domain-wide delegation of authority](https://developers.google.com/cloud-search/docs/guides/delegation/).</p>
<p class="toc_element">
  <code><a href="#search">search(body=None, x__xgafv=None)</a></code></p>
<p class="firstline">The Cloud Search Query API provides the search method, which returns the most relevant results from a user query. The results can come from Google Workspace apps, such as Gmail or Google Drive, or they can come from data that you have indexed from a third party. **Note:** This API requires a standard end user account to execute. A service account can't perform Query API requests directly; to use a service account to perform queries, set up [Google Workspace domain-wide delegation of authority](https://developers.google.com/cloud-search/docs/guides/delegation/).</p>
<p class="toc_element">
  <code><a href="#suggest">suggest(body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Provides suggestions for autocompleting the query. **Note:** This API requires a standard end user account to execute. A service account can't perform Query API requests directly; to use a service account to perform queries, set up [Google Workspace domain-wide delegation of authority](https://developers.google.com/cloud-search/docs/guides/delegation/).</p>
<h3>Method Details</h3>
<div class="method">
    <code class="details" id="close">close()</code>
  <pre>Close httplib2 connections.</pre>
</div>

<div class="method">
    <code class="details" id="debugSearch">debugSearch(body=None, x__xgafv=None)</code>
  <pre>Returns Debug information for Cloud Search Query API provides the search method. **Note:** This API requires a standard end user account to execute. A service account can&#x27;t perform Query API requests directly; to use a service account to perform queries, set up [Google Workspace domain-wide delegation of authority](https://developers.google.com/cloud-search/docs/guides/delegation/).

Args:
  body: object, The request body.
    The object takes the form of:

{ # The search API request. NEXT ID: 17
  &quot;contextAttributes&quot;: [ # Context attributes for the request which will be used to adjust ranking of search results. The maximum number of elements is 10.
    { # A named attribute associated with an item which can be used for influencing the ranking of the item based on the context in the request.
      &quot;name&quot;: &quot;A String&quot;, # The name of the attribute. It should not be empty. The maximum length is 32 characters. The name must start with a letter and can only contain letters (A-Z, a-z) or numbers (0-9). The name will be normalized (lower-cased) before being matched.
      &quot;values&quot;: [ # Text values of the attribute. The maximum number of elements is 10. The maximum length of an element in the array is 32 characters. The value will be normalized (lower-cased) before being matched.
        &quot;A String&quot;,
      ],
    },
  ],
  &quot;dataSourceRestrictions&quot;: [ # The sources to use for querying. If not specified, all data sources from the current search application are used.
    { # Restriction on Datasource.
      &quot;filterOptions&quot;: [ # Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: &quot;objecttype&quot;, &quot;type&quot; and &quot;mimetype&quot;. For now, schema specific filters cannot be used to filter suggestions.
        { # Filter options to be applied on query.
          &quot;filter&quot;: { # A generic way of expressing filters in a query, which supports two approaches: **1. Setting a ValueFilter.** The name must match an operator_name defined in the schema for your data source. **2. Setting a CompositeFilter.** The filters are evaluated using the logical operator. The top-level operators can only be either an AND or a NOT. AND can appear only at the top-most level. OR can appear only under a top-level AND. # Generic filter to restrict the search, such as `lang:en`, `site:xyz`.
            &quot;compositeFilter&quot;: {
              &quot;logicOperator&quot;: &quot;A String&quot;, # The logic operator of the sub filter.
              &quot;subFilters&quot;: [ # Sub filters.
                # Object with schema name: Filter
              ],
            },
            &quot;valueFilter&quot;: {
              &quot;operatorName&quot;: &quot;A String&quot;, # The `operator_name` applied to the query, such as *price_greater_than*. The filter can work against both types of filters defined in the schema for your data source: 1. `operator_name`, where the query filters results by the property that matches the value. 2. `greater_than_operator_name` or `less_than_operator_name` in your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
              &quot;value&quot;: { # Definition of a single value with generic type. # The value to be compared with.
                &quot;booleanValue&quot;: True or False,
                &quot;dateValue&quot;: { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                  &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                  &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                },
                &quot;doubleValue&quot;: 3.14,
                &quot;integerValue&quot;: &quot;A String&quot;,
                &quot;stringValue&quot;: &quot;A String&quot;,
                &quot;timestampValue&quot;: &quot;A String&quot;,
              },
            },
          },
          &quot;objectType&quot;: &quot;A String&quot;, # If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
        },
      ],
      &quot;source&quot;: { # Defines sources for the suggest/search APIs. # The source of restriction.
        &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
        &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
      },
    },
  ],
  &quot;facetOptions&quot;: [
    { # Specifies operators to return facet results for. There will be one FacetResult for every source_name/object_type/operator_name combination.
      &quot;integerFacetingOptions&quot;: { # Used to specify integer faceting options. # If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
        &quot;integerBuckets&quot;: [ # Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {&lt;1, [1,5), [5-10), [10-100), &gt;=100}.
          &quot;A String&quot;,
        ],
      },
      &quot;numFacetBuckets&quot;: 42, # Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
      &quot;objectType&quot;: &quot;A String&quot;, # If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
      &quot;operatorName&quot;: &quot;A String&quot;, # The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
      &quot;sourceName&quot;: &quot;A String&quot;, # Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
    },
  ],
  &quot;pageSize&quot;: 42, # Maximum number of search results to return in one page. Valid values are between 1 and 100, inclusive. Default value is 10. Minimum value is 50 when results beyond 2000 are requested.
  &quot;query&quot;: &quot;A String&quot;, # The raw query string. See supported search operators in the [Narrow your search with operators](https://support.google.com/cloudsearch/answer/6172299)
  &quot;queryInterpretationOptions&quot;: { # Options to interpret user query. # Options to interpret the user query.
    &quot;disableNlInterpretation&quot;: True or False, # Flag to disable natural language (NL) interpretation of queries. Default is false, Set to true to disable natural language interpretation. NL interpretation only applies to predefined datasources.
    &quot;disableSupplementalResults&quot;: True or False, # Use this flag to disable supplemental results for a query. Supplemental results setting chosen at SearchApplication level will take precedence if set to True.
    &quot;enableVerbatimMode&quot;: True or False, # Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental result retrieval, and usage of synonyms including custom ones. Nl interpretation will be disabled if either one of the two flags is true.
  },
  &quot;requestOptions&quot;: { # Shared request options for all RPC methods. # Request options, such as the search application and user timezone.
    &quot;debugOptions&quot;: { # Shared request debug options for all cloudsearch RPC methods. # Debug options of the request
      &quot;enableDebugging&quot;: True or False, # If you are asked by Google to help with debugging, set this field. Otherwise, ignore this field.
    },
    &quot;languageCode&quot;: &quot;A String&quot;, # The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. For translations. Set this field using the language set in browser or for the page. In the event that the user&#x27;s language preference is known, set this field to the known user language. When specified, the documents in search results are biased towards the specified language. The Suggest API uses this field as a hint to make better third-party autocomplete predictions.
    &quot;searchApplicationId&quot;: &quot;A String&quot;, # The ID generated when you create a search application using the [admin console](https://support.google.com/a/answer/9043922).
    &quot;timeZone&quot;: &quot;A String&quot;, # Current user&#x27;s time zone id, such as &quot;America/Los_Angeles&quot; or &quot;Australia/Sydney&quot;. These IDs are defined by [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/) project, and currently available in the file [timezone.xml](http://unicode.org/repos/cldr/trunk/common/bcp47/timezone.xml). This field is used to correctly interpret date and time queries. If this field is not specified, the default time zone (UTC) is used.
  },
  &quot;sortOptions&quot;: { # The options for sorting the search results
    &quot;operatorName&quot;: &quot;A String&quot;, # The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
    &quot;sortOrder&quot;: &quot;A String&quot;, # Ascending is the default sort order
  },
  &quot;start&quot;: 42, # Starting index of the results.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Debug Search Response.
  &quot;gsrRequest&quot;: &quot;A String&quot;, # Serialized string of GenericSearchRequest.
  &quot;gsrResponse&quot;: &quot;A String&quot;, # Serialized string of GenericSearchResponse.
  &quot;searchResponse&quot;: { # The search API response. NEXT ID: 17 # Search response.
    &quot;debugInfo&quot;: { # Debugging information about the response. # Debugging information about the response.
      &quot;formattedDebugInfo&quot;: &quot;A String&quot;, # General debug info formatted for display.
    },
    &quot;errorInfo&quot;: { # Error information about the response. # Error information about the response.
      &quot;errorMessages&quot;: [
        { # Error message per source response.
          &quot;errorMessage&quot;: &quot;A String&quot;,
          &quot;source&quot;: { # Defines sources for the suggest/search APIs.
            &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
            &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
          },
        },
      ],
    },
    &quot;facetResults&quot;: [ # Repeated facet results.
      { # Source specific facet response
        &quot;buckets&quot;: [ # FacetBuckets for values in response containing at least a single result with the corresponding filter.
          { # A bucket in a facet is the basic unit of operation. A bucket can comprise either a single value OR a contiguous range of values, depending on the type of the field bucketed. FacetBucket is currently used only for returning the response object.
            &quot;count&quot;: 42, # Number of results that match the bucket value. Counts are only returned for searches when count accuracy is ensured. Cloud Search does not guarantee facet counts for any query and facet counts might be present only intermittently, even for identical queries. Do not build dependencies on facet count existence; instead use facet ount percentages which are always returned.
            &quot;filter&quot;: { # A generic way of expressing filters in a query, which supports two approaches: **1. Setting a ValueFilter.** The name must match an operator_name defined in the schema for your data source. **2. Setting a CompositeFilter.** The filters are evaluated using the logical operator. The top-level operators can only be either an AND or a NOT. AND can appear only at the top-most level. OR can appear only under a top-level AND. # Filter to be passed in the search request if the corresponding bucket is selected.
              &quot;compositeFilter&quot;: {
                &quot;logicOperator&quot;: &quot;A String&quot;, # The logic operator of the sub filter.
                &quot;subFilters&quot;: [ # Sub filters.
                  # Object with schema name: Filter
                ],
              },
              &quot;valueFilter&quot;: {
                &quot;operatorName&quot;: &quot;A String&quot;, # The `operator_name` applied to the query, such as *price_greater_than*. The filter can work against both types of filters defined in the schema for your data source: 1. `operator_name`, where the query filters results by the property that matches the value. 2. `greater_than_operator_name` or `less_than_operator_name` in your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
                &quot;value&quot;: { # Definition of a single value with generic type. # The value to be compared with.
                  &quot;booleanValue&quot;: True or False,
                  &quot;dateValue&quot;: { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                    &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                  },
                  &quot;doubleValue&quot;: 3.14,
                  &quot;integerValue&quot;: &quot;A String&quot;,
                  &quot;stringValue&quot;: &quot;A String&quot;,
                  &quot;timestampValue&quot;: &quot;A String&quot;,
                },
              },
            },
            &quot;percentage&quot;: 42, # Percent of results that match the bucket value. The returned value is between (0-100], and is rounded down to an integer if fractional. If the value is not explicitly returned, it represents a percentage value that rounds to 0. Percentages are returned for all searches, but are an estimate. Because percentages are always returned, you should render percentages instead of counts.
            &quot;value&quot;: { # Definition of a single value with generic type.
              &quot;booleanValue&quot;: True or False,
              &quot;dateValue&quot;: { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
              },
              &quot;doubleValue&quot;: 3.14,
              &quot;integerValue&quot;: &quot;A String&quot;,
              &quot;stringValue&quot;: &quot;A String&quot;,
              &quot;timestampValue&quot;: &quot;A String&quot;,
            },
          },
        ],
        &quot;objectType&quot;: &quot;A String&quot;, # Object type for which facet results are returned. Can be empty.
        &quot;operatorName&quot;: &quot;A String&quot;, # The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
        &quot;sourceName&quot;: &quot;A String&quot;, # Source name for which facet results are returned. Will not be empty.
      },
    ],
    &quot;hasMoreResults&quot;: True or False, # Whether there are more search results matching the query.
    &quot;queryInterpretation&quot;: { # Query interpretation result for user query. Empty if query interpretation is disabled.
      &quot;interpretationType&quot;: &quot;A String&quot;,
      &quot;interpretedQuery&quot;: &quot;A String&quot;, # The interpretation of the query used in search. For example, queries with natural language intent like &quot;email from john&quot; will be interpreted as &quot;from:john source:mail&quot;. This field will not be filled when the reason is NOT_ENOUGH_RESULTS_FOUND_FOR_USER_QUERY.
      &quot;reason&quot;: &quot;A String&quot;, # The reason for interpretation of the query. This field will not be UNSPECIFIED if the interpretation type is not NONE.
    },
    &quot;resultCountEstimate&quot;: &quot;A String&quot;, # The estimated result count for this query.
    &quot;resultCountExact&quot;: &quot;A String&quot;, # The exact result count for this query.
    &quot;resultCounts&quot;: { # Result count information # Expanded result count information.
      &quot;sourceResultCounts&quot;: [ # Result count information for each source with results.
        { # Per source result count information.
          &quot;hasMoreResults&quot;: True or False, # Whether there are more search results for this source.
          &quot;resultCountEstimate&quot;: &quot;A String&quot;, # The estimated result count for this source.
          &quot;resultCountExact&quot;: &quot;A String&quot;, # The exact result count for this source.
          &quot;source&quot;: { # Defines sources for the suggest/search APIs. # The source the result count information is associated with.
            &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
            &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
          },
        },
      ],
    },
    &quot;results&quot;: [ # Results from a search query.
      { # Results containing indexed information for a document.
        &quot;clusteredResults&quot;: [ # If source is clustered, provide list of clustered results. There will only be one level of clustered results. If current source is not enabled for clustering, this field will be empty.
          # Object with schema name: SearchResult
        ],
        &quot;debugInfo&quot;: { # Debugging information about the result. # Debugging information about this search result.
          &quot;formattedDebugInfo&quot;: &quot;A String&quot;, # General debug info formatted for display.
        },
        &quot;metadata&quot;: { # Metadata of a matched search result. # Metadata of the search result.
          &quot;createTime&quot;: &quot;A String&quot;, # The creation time for this document or object in the search result.
          &quot;displayOptions&quot;: { # Options that specify how to display a structured data search result.
            &quot;metalines&quot;: [ # The metalines content to be displayed with the result.
              { # The collection of fields that make up a displayed line
                &quot;fields&quot;: [
                  { # Display Fields for Search Results
                    &quot;label&quot;: &quot;A String&quot;, # The display label for the property.
                    &quot;operatorName&quot;: &quot;A String&quot;, # The operator name of the property.
                    &quot;property&quot;: { # A typed name-value pair for structured data. The type of the value should be the same as the registered type for the `name` property in the object definition of `objectType`. # The name value pair for the property.
                      &quot;booleanValue&quot;: True or False,
                      &quot;dateValues&quot;: { # List of date values.
                        &quot;values&quot;: [
                          { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                            &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                            &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                            &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                          },
                        ],
                      },
                      &quot;doubleValues&quot;: { # List of double values.
                        &quot;values&quot;: [
                          3.14,
                        ],
                      },
                      &quot;enumValues&quot;: { # List of enum values.
                        &quot;values&quot;: [ # The maximum allowable length for string values is 32 characters.
                          &quot;A String&quot;,
                        ],
                      },
                      &quot;htmlValues&quot;: { # List of html values.
                        &quot;values&quot;: [ # The maximum allowable length for html values is 2048 characters.
                          &quot;A String&quot;,
                        ],
                      },
                      &quot;integerValues&quot;: { # List of integer values.
                        &quot;values&quot;: [
                          &quot;A String&quot;,
                        ],
                      },
                      &quot;name&quot;: &quot;A String&quot;, # The name of the property. This name should correspond to the name of the property that was registered for object definition in the schema. The maximum allowable length for this property is 256 characters.
                      &quot;objectValues&quot;: { # List of object values.
                        &quot;values&quot;: [
                          # Object with schema name: StructuredDataObject
                        ],
                      },
                      &quot;textValues&quot;: { # List of text values.
                        &quot;values&quot;: [ # The maximum allowable length for text values is 2048 characters.
                          &quot;A String&quot;,
                        ],
                      },
                      &quot;timestampValues&quot;: { # List of timestamp values.
                        &quot;values&quot;: [
                          &quot;A String&quot;,
                        ],
                      },
                    },
                  },
                ],
              },
            ],
            &quot;objectTypeLabel&quot;: &quot;A String&quot;, # The display label for the object.
          },
          &quot;fields&quot;: [ # Indexed fields in structured data, returned as a generic named property.
            { # A typed name-value pair for structured data. The type of the value should be the same as the registered type for the `name` property in the object definition of `objectType`.
              &quot;booleanValue&quot;: True or False,
              &quot;dateValues&quot;: { # List of date values.
                &quot;values&quot;: [
                  { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                    &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                    &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                    &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                  },
                ],
              },
              &quot;doubleValues&quot;: { # List of double values.
                &quot;values&quot;: [
                  3.14,
                ],
              },
              &quot;enumValues&quot;: { # List of enum values.
                &quot;values&quot;: [ # The maximum allowable length for string values is 32 characters.
                  &quot;A String&quot;,
                ],
              },
              &quot;htmlValues&quot;: { # List of html values.
                &quot;values&quot;: [ # The maximum allowable length for html values is 2048 characters.
                  &quot;A String&quot;,
                ],
              },
              &quot;integerValues&quot;: { # List of integer values.
                &quot;values&quot;: [
                  &quot;A String&quot;,
                ],
              },
              &quot;name&quot;: &quot;A String&quot;, # The name of the property. This name should correspond to the name of the property that was registered for object definition in the schema. The maximum allowable length for this property is 256 characters.
              &quot;objectValues&quot;: { # List of object values.
                &quot;values&quot;: [
                  # Object with schema name: StructuredDataObject
                ],
              },
              &quot;textValues&quot;: { # List of text values.
                &quot;values&quot;: [ # The maximum allowable length for text values is 2048 characters.
                  &quot;A String&quot;,
                ],
              },
              &quot;timestampValues&quot;: { # List of timestamp values.
                &quot;values&quot;: [
                  &quot;A String&quot;,
                ],
              },
            },
          ],
          &quot;mimeType&quot;: &quot;A String&quot;, # Mime type of the search result.
          &quot;objectType&quot;: &quot;A String&quot;, # Object type of the search result.
          &quot;owner&quot;: { # Object to represent a person. # Owner (usually creator) of the document or object of the search result.
            &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses
              { # A person&#x27;s email address.
                &quot;customType&quot;: &quot;A String&quot;, # If the value of type is custom, this property contains the custom type string.
                &quot;emailAddress&quot;: &quot;A String&quot;, # The email address.
                &quot;emailUrl&quot;: &quot;A String&quot;, # The URL to send email.
                &quot;primary&quot;: True or False, # Indicates if this is the user&#x27;s primary email. Only one entry can be marked as primary.
                &quot;type&quot;: &quot;A String&quot;, # The type of the email account. Acceptable values are: &quot;custom&quot;, &quot;home&quot;, &quot;other&quot;, &quot;work&quot;.
              },
            ],
            &quot;name&quot;: &quot;A String&quot;, # The resource name of the person to provide information about. See [`People.get`](https://developers.google.com/people/api/rest/v1/people/get) from the Google People API.
            &quot;obfuscatedId&quot;: &quot;A String&quot;, # Obfuscated ID of a person.
            &quot;personNames&quot;: [ # The person&#x27;s name
              { # A person&#x27;s name.
                &quot;displayName&quot;: &quot;A String&quot;, # The read-only display name formatted according to the locale specified by the viewer&#x27;s account or the `Accept-Language` HTTP header.
              },
            ],
            &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers
              { # A person&#x27;s Phone Number
                &quot;phoneNumber&quot;: &quot;A String&quot;, # The phone number of the person.
                &quot;type&quot;: &quot;A String&quot;,
              },
            ],
            &quot;photos&quot;: [ # A person&#x27;s read-only photo. A picture shown next to the person&#x27;s name to help others recognize the person in search results.
              { # A person&#x27;s photo.
                &quot;url&quot;: &quot;A String&quot;, # The URL of the photo.
              },
            ],
          },
          &quot;source&quot;: { # Defines sources for the suggest/search APIs. # The named source for the result, such as Gmail.
            &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
            &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
          },
          &quot;thumbnailUrl&quot;: &quot;A String&quot;, # The thumbnail URL of the result.
          &quot;updateTime&quot;: &quot;A String&quot;, # The last modified date for the object in the search result. If not set in the item, the value returned here is empty. When `updateTime` is used for calculating freshness and is not set, this value defaults to 2 years from the current time.
        },
        &quot;snippet&quot;: { # Snippet of the search result, which summarizes the content of the resulting page. # The concatenation of all snippets (summaries) available for this result.
          &quot;matchRanges&quot;: [ # The matched ranges in the snippet.
            { # Matched range of a snippet [start, end).
              &quot;end&quot;: 42, # End of the match in the snippet.
              &quot;start&quot;: 42, # Starting position of the match in the snippet.
            },
          ],
          &quot;snippet&quot;: &quot;A String&quot;, # The snippet of the document. May contain escaped HTML character that should be unescaped prior to rendering.
        },
        &quot;title&quot;: &quot;A String&quot;, # Title of the search result.
        &quot;url&quot;: &quot;A String&quot;, # The URL of the search result. The URL contains a Google redirect to the actual item. This URL is signed and shouldn&#x27;t be changed.
      },
    ],
    &quot;spellResults&quot;: [ # Suggested spelling for the query.
      {
        &quot;suggestedQuery&quot;: &quot;A String&quot;, # The suggested spelling of the query.
        &quot;suggestedQueryHtml&quot;: { # IMPORTANT: It is unsafe to accept this message from an untrusted source, since it&#x27;s trivial for an attacker to forge serialized messages that don&#x27;t fulfill the type&#x27;s safety contract -- for example, it could contain attacker controlled script. A system which receives a SafeHtmlProto implicitly trusts the producer of the SafeHtmlProto. So, it&#x27;s generally safe to return this message in RPC responses, but generally unsafe to accept it in RPC requests. # The sanitized HTML representing the spell corrected query that can be used in the UI. This usually has language-specific tags to mark up parts of the query that are spell checked.
          &quot;privateDoNotAccessOrElseSafeHtmlWrappedValue&quot;: &quot;A String&quot;, # IMPORTANT: Never set or read this field, even from tests, it is private. See documentation at the top of .proto file for programming language packages with which to create or read this message.
        },
        &quot;suggestionType&quot;: &quot;A String&quot;, # Suggestion triggered for the current query.
      },
    ],
    &quot;structuredResults&quot;: [ # Structured results for the user query. These results are not counted against the page_size.
      { # Structured results that are returned as part of search request.
        &quot;person&quot;: { # Object to represent a person. # Representation of a person
          &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses
            { # A person&#x27;s email address.
              &quot;customType&quot;: &quot;A String&quot;, # If the value of type is custom, this property contains the custom type string.
              &quot;emailAddress&quot;: &quot;A String&quot;, # The email address.
              &quot;emailUrl&quot;: &quot;A String&quot;, # The URL to send email.
              &quot;primary&quot;: True or False, # Indicates if this is the user&#x27;s primary email. Only one entry can be marked as primary.
              &quot;type&quot;: &quot;A String&quot;, # The type of the email account. Acceptable values are: &quot;custom&quot;, &quot;home&quot;, &quot;other&quot;, &quot;work&quot;.
            },
          ],
          &quot;name&quot;: &quot;A String&quot;, # The resource name of the person to provide information about. See [`People.get`](https://developers.google.com/people/api/rest/v1/people/get) from the Google People API.
          &quot;obfuscatedId&quot;: &quot;A String&quot;, # Obfuscated ID of a person.
          &quot;personNames&quot;: [ # The person&#x27;s name
            { # A person&#x27;s name.
              &quot;displayName&quot;: &quot;A String&quot;, # The read-only display name formatted according to the locale specified by the viewer&#x27;s account or the `Accept-Language` HTTP header.
            },
          ],
          &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers
            { # A person&#x27;s Phone Number
              &quot;phoneNumber&quot;: &quot;A String&quot;, # The phone number of the person.
              &quot;type&quot;: &quot;A String&quot;,
            },
          ],
          &quot;photos&quot;: [ # A person&#x27;s read-only photo. A picture shown next to the person&#x27;s name to help others recognize the person in search results.
            { # A person&#x27;s photo.
              &quot;url&quot;: &quot;A String&quot;, # The URL of the photo.
            },
          ],
        },
      },
    ],
  },
}</pre>
</div>

<div class="method">
    <code class="details" id="removeActivity">removeActivity(body=None, x__xgafv=None)</code>
  <pre>Provides functionality to remove logged activity for a user. Currently to be used only for Chat 1p clients **Note:** This API requires a standard end user account to execute. A service account can&#x27;t perform Remove Activity requests directly; to use a service account to perform queries, set up [Google Workspace domain-wide delegation of authority](https://developers.google.com/cloud-search/docs/guides/delegation/).

Args:
  body: object, The request body.
    The object takes the form of:

{ # Remove Logged Activity Request.
  &quot;requestOptions&quot;: { # Shared request options for all RPC methods. # Request options, such as the search application and clientId.
    &quot;debugOptions&quot;: { # Shared request debug options for all cloudsearch RPC methods. # Debug options of the request
      &quot;enableDebugging&quot;: True or False, # If you are asked by Google to help with debugging, set this field. Otherwise, ignore this field.
    },
    &quot;languageCode&quot;: &quot;A String&quot;, # The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. For translations. Set this field using the language set in browser or for the page. In the event that the user&#x27;s language preference is known, set this field to the known user language. When specified, the documents in search results are biased towards the specified language. The Suggest API uses this field as a hint to make better third-party autocomplete predictions.
    &quot;searchApplicationId&quot;: &quot;A String&quot;, # The ID generated when you create a search application using the [admin console](https://support.google.com/a/answer/9043922).
    &quot;timeZone&quot;: &quot;A String&quot;, # Current user&#x27;s time zone id, such as &quot;America/Los_Angeles&quot; or &quot;Australia/Sydney&quot;. These IDs are defined by [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/) project, and currently available in the file [timezone.xml](http://unicode.org/repos/cldr/trunk/common/bcp47/timezone.xml). This field is used to correctly interpret date and time queries. If this field is not specified, the default time zone (UTC) is used.
  },
  &quot;userActivity&quot;: { # User&#x27;s single or bulk query activity. This can be a logging query or deletion query. # User Activity containing the data to be deleted.
    &quot;queryActivity&quot;: { # Details about a user&#x27;s query activity. # Contains data which needs to be logged/removed.
      &quot;query&quot;: &quot;A String&quot;, # User input query to be logged/removed.
    },
  },
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Remove Logged Activity Response. will return an empty response for now. Will be revisited in later phases.
}</pre>
</div>

<div class="method">
    <code class="details" id="search">search(body=None, x__xgafv=None)</code>
  <pre>The Cloud Search Query API provides the search method, which returns the most relevant results from a user query. The results can come from Google Workspace apps, such as Gmail or Google Drive, or they can come from data that you have indexed from a third party. **Note:** This API requires a standard end user account to execute. A service account can&#x27;t perform Query API requests directly; to use a service account to perform queries, set up [Google Workspace domain-wide delegation of authority](https://developers.google.com/cloud-search/docs/guides/delegation/).

Args:
  body: object, The request body.
    The object takes the form of:

{ # The search API request. NEXT ID: 17
  &quot;contextAttributes&quot;: [ # Context attributes for the request which will be used to adjust ranking of search results. The maximum number of elements is 10.
    { # A named attribute associated with an item which can be used for influencing the ranking of the item based on the context in the request.
      &quot;name&quot;: &quot;A String&quot;, # The name of the attribute. It should not be empty. The maximum length is 32 characters. The name must start with a letter and can only contain letters (A-Z, a-z) or numbers (0-9). The name will be normalized (lower-cased) before being matched.
      &quot;values&quot;: [ # Text values of the attribute. The maximum number of elements is 10. The maximum length of an element in the array is 32 characters. The value will be normalized (lower-cased) before being matched.
        &quot;A String&quot;,
      ],
    },
  ],
  &quot;dataSourceRestrictions&quot;: [ # The sources to use for querying. If not specified, all data sources from the current search application are used.
    { # Restriction on Datasource.
      &quot;filterOptions&quot;: [ # Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: &quot;objecttype&quot;, &quot;type&quot; and &quot;mimetype&quot;. For now, schema specific filters cannot be used to filter suggestions.
        { # Filter options to be applied on query.
          &quot;filter&quot;: { # A generic way of expressing filters in a query, which supports two approaches: **1. Setting a ValueFilter.** The name must match an operator_name defined in the schema for your data source. **2. Setting a CompositeFilter.** The filters are evaluated using the logical operator. The top-level operators can only be either an AND or a NOT. AND can appear only at the top-most level. OR can appear only under a top-level AND. # Generic filter to restrict the search, such as `lang:en`, `site:xyz`.
            &quot;compositeFilter&quot;: {
              &quot;logicOperator&quot;: &quot;A String&quot;, # The logic operator of the sub filter.
              &quot;subFilters&quot;: [ # Sub filters.
                # Object with schema name: Filter
              ],
            },
            &quot;valueFilter&quot;: {
              &quot;operatorName&quot;: &quot;A String&quot;, # The `operator_name` applied to the query, such as *price_greater_than*. The filter can work against both types of filters defined in the schema for your data source: 1. `operator_name`, where the query filters results by the property that matches the value. 2. `greater_than_operator_name` or `less_than_operator_name` in your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
              &quot;value&quot;: { # Definition of a single value with generic type. # The value to be compared with.
                &quot;booleanValue&quot;: True or False,
                &quot;dateValue&quot;: { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                  &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                  &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                },
                &quot;doubleValue&quot;: 3.14,
                &quot;integerValue&quot;: &quot;A String&quot;,
                &quot;stringValue&quot;: &quot;A String&quot;,
                &quot;timestampValue&quot;: &quot;A String&quot;,
              },
            },
          },
          &quot;objectType&quot;: &quot;A String&quot;, # If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
        },
      ],
      &quot;source&quot;: { # Defines sources for the suggest/search APIs. # The source of restriction.
        &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
        &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
      },
    },
  ],
  &quot;facetOptions&quot;: [
    { # Specifies operators to return facet results for. There will be one FacetResult for every source_name/object_type/operator_name combination.
      &quot;integerFacetingOptions&quot;: { # Used to specify integer faceting options. # If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
        &quot;integerBuckets&quot;: [ # Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {&lt;1, [1,5), [5-10), [10-100), &gt;=100}.
          &quot;A String&quot;,
        ],
      },
      &quot;numFacetBuckets&quot;: 42, # Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
      &quot;objectType&quot;: &quot;A String&quot;, # If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
      &quot;operatorName&quot;: &quot;A String&quot;, # The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
      &quot;sourceName&quot;: &quot;A String&quot;, # Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
    },
  ],
  &quot;pageSize&quot;: 42, # Maximum number of search results to return in one page. Valid values are between 1 and 100, inclusive. Default value is 10. Minimum value is 50 when results beyond 2000 are requested.
  &quot;query&quot;: &quot;A String&quot;, # The raw query string. See supported search operators in the [Narrow your search with operators](https://support.google.com/cloudsearch/answer/6172299)
  &quot;queryInterpretationOptions&quot;: { # Options to interpret user query. # Options to interpret the user query.
    &quot;disableNlInterpretation&quot;: True or False, # Flag to disable natural language (NL) interpretation of queries. Default is false, Set to true to disable natural language interpretation. NL interpretation only applies to predefined datasources.
    &quot;disableSupplementalResults&quot;: True or False, # Use this flag to disable supplemental results for a query. Supplemental results setting chosen at SearchApplication level will take precedence if set to True.
    &quot;enableVerbatimMode&quot;: True or False, # Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental result retrieval, and usage of synonyms including custom ones. Nl interpretation will be disabled if either one of the two flags is true.
  },
  &quot;requestOptions&quot;: { # Shared request options for all RPC methods. # Request options, such as the search application and user timezone.
    &quot;debugOptions&quot;: { # Shared request debug options for all cloudsearch RPC methods. # Debug options of the request
      &quot;enableDebugging&quot;: True or False, # If you are asked by Google to help with debugging, set this field. Otherwise, ignore this field.
    },
    &quot;languageCode&quot;: &quot;A String&quot;, # The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. For translations. Set this field using the language set in browser or for the page. In the event that the user&#x27;s language preference is known, set this field to the known user language. When specified, the documents in search results are biased towards the specified language. The Suggest API uses this field as a hint to make better third-party autocomplete predictions.
    &quot;searchApplicationId&quot;: &quot;A String&quot;, # The ID generated when you create a search application using the [admin console](https://support.google.com/a/answer/9043922).
    &quot;timeZone&quot;: &quot;A String&quot;, # Current user&#x27;s time zone id, such as &quot;America/Los_Angeles&quot; or &quot;Australia/Sydney&quot;. These IDs are defined by [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/) project, and currently available in the file [timezone.xml](http://unicode.org/repos/cldr/trunk/common/bcp47/timezone.xml). This field is used to correctly interpret date and time queries. If this field is not specified, the default time zone (UTC) is used.
  },
  &quot;sortOptions&quot;: { # The options for sorting the search results
    &quot;operatorName&quot;: &quot;A String&quot;, # The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
    &quot;sortOrder&quot;: &quot;A String&quot;, # Ascending is the default sort order
  },
  &quot;start&quot;: 42, # Starting index of the results.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # The search API response. NEXT ID: 17
  &quot;debugInfo&quot;: { # Debugging information about the response. # Debugging information about the response.
    &quot;formattedDebugInfo&quot;: &quot;A String&quot;, # General debug info formatted for display.
  },
  &quot;errorInfo&quot;: { # Error information about the response. # Error information about the response.
    &quot;errorMessages&quot;: [
      { # Error message per source response.
        &quot;errorMessage&quot;: &quot;A String&quot;,
        &quot;source&quot;: { # Defines sources for the suggest/search APIs.
          &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
          &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
        },
      },
    ],
  },
  &quot;facetResults&quot;: [ # Repeated facet results.
    { # Source specific facet response
      &quot;buckets&quot;: [ # FacetBuckets for values in response containing at least a single result with the corresponding filter.
        { # A bucket in a facet is the basic unit of operation. A bucket can comprise either a single value OR a contiguous range of values, depending on the type of the field bucketed. FacetBucket is currently used only for returning the response object.
          &quot;count&quot;: 42, # Number of results that match the bucket value. Counts are only returned for searches when count accuracy is ensured. Cloud Search does not guarantee facet counts for any query and facet counts might be present only intermittently, even for identical queries. Do not build dependencies on facet count existence; instead use facet ount percentages which are always returned.
          &quot;filter&quot;: { # A generic way of expressing filters in a query, which supports two approaches: **1. Setting a ValueFilter.** The name must match an operator_name defined in the schema for your data source. **2. Setting a CompositeFilter.** The filters are evaluated using the logical operator. The top-level operators can only be either an AND or a NOT. AND can appear only at the top-most level. OR can appear only under a top-level AND. # Filter to be passed in the search request if the corresponding bucket is selected.
            &quot;compositeFilter&quot;: {
              &quot;logicOperator&quot;: &quot;A String&quot;, # The logic operator of the sub filter.
              &quot;subFilters&quot;: [ # Sub filters.
                # Object with schema name: Filter
              ],
            },
            &quot;valueFilter&quot;: {
              &quot;operatorName&quot;: &quot;A String&quot;, # The `operator_name` applied to the query, such as *price_greater_than*. The filter can work against both types of filters defined in the schema for your data source: 1. `operator_name`, where the query filters results by the property that matches the value. 2. `greater_than_operator_name` or `less_than_operator_name` in your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
              &quot;value&quot;: { # Definition of a single value with generic type. # The value to be compared with.
                &quot;booleanValue&quot;: True or False,
                &quot;dateValue&quot;: { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                  &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                  &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                },
                &quot;doubleValue&quot;: 3.14,
                &quot;integerValue&quot;: &quot;A String&quot;,
                &quot;stringValue&quot;: &quot;A String&quot;,
                &quot;timestampValue&quot;: &quot;A String&quot;,
              },
            },
          },
          &quot;percentage&quot;: 42, # Percent of results that match the bucket value. The returned value is between (0-100], and is rounded down to an integer if fractional. If the value is not explicitly returned, it represents a percentage value that rounds to 0. Percentages are returned for all searches, but are an estimate. Because percentages are always returned, you should render percentages instead of counts.
          &quot;value&quot;: { # Definition of a single value with generic type.
            &quot;booleanValue&quot;: True or False,
            &quot;dateValue&quot;: { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
              &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
              &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
              &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
            },
            &quot;doubleValue&quot;: 3.14,
            &quot;integerValue&quot;: &quot;A String&quot;,
            &quot;stringValue&quot;: &quot;A String&quot;,
            &quot;timestampValue&quot;: &quot;A String&quot;,
          },
        },
      ],
      &quot;objectType&quot;: &quot;A String&quot;, # Object type for which facet results are returned. Can be empty.
      &quot;operatorName&quot;: &quot;A String&quot;, # The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
      &quot;sourceName&quot;: &quot;A String&quot;, # Source name for which facet results are returned. Will not be empty.
    },
  ],
  &quot;hasMoreResults&quot;: True or False, # Whether there are more search results matching the query.
  &quot;queryInterpretation&quot;: { # Query interpretation result for user query. Empty if query interpretation is disabled.
    &quot;interpretationType&quot;: &quot;A String&quot;,
    &quot;interpretedQuery&quot;: &quot;A String&quot;, # The interpretation of the query used in search. For example, queries with natural language intent like &quot;email from john&quot; will be interpreted as &quot;from:john source:mail&quot;. This field will not be filled when the reason is NOT_ENOUGH_RESULTS_FOUND_FOR_USER_QUERY.
    &quot;reason&quot;: &quot;A String&quot;, # The reason for interpretation of the query. This field will not be UNSPECIFIED if the interpretation type is not NONE.
  },
  &quot;resultCountEstimate&quot;: &quot;A String&quot;, # The estimated result count for this query.
  &quot;resultCountExact&quot;: &quot;A String&quot;, # The exact result count for this query.
  &quot;resultCounts&quot;: { # Result count information # Expanded result count information.
    &quot;sourceResultCounts&quot;: [ # Result count information for each source with results.
      { # Per source result count information.
        &quot;hasMoreResults&quot;: True or False, # Whether there are more search results for this source.
        &quot;resultCountEstimate&quot;: &quot;A String&quot;, # The estimated result count for this source.
        &quot;resultCountExact&quot;: &quot;A String&quot;, # The exact result count for this source.
        &quot;source&quot;: { # Defines sources for the suggest/search APIs. # The source the result count information is associated with.
          &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
          &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
        },
      },
    ],
  },
  &quot;results&quot;: [ # Results from a search query.
    { # Results containing indexed information for a document.
      &quot;clusteredResults&quot;: [ # If source is clustered, provide list of clustered results. There will only be one level of clustered results. If current source is not enabled for clustering, this field will be empty.
        # Object with schema name: SearchResult
      ],
      &quot;debugInfo&quot;: { # Debugging information about the result. # Debugging information about this search result.
        &quot;formattedDebugInfo&quot;: &quot;A String&quot;, # General debug info formatted for display.
      },
      &quot;metadata&quot;: { # Metadata of a matched search result. # Metadata of the search result.
        &quot;createTime&quot;: &quot;A String&quot;, # The creation time for this document or object in the search result.
        &quot;displayOptions&quot;: { # Options that specify how to display a structured data search result.
          &quot;metalines&quot;: [ # The metalines content to be displayed with the result.
            { # The collection of fields that make up a displayed line
              &quot;fields&quot;: [
                { # Display Fields for Search Results
                  &quot;label&quot;: &quot;A String&quot;, # The display label for the property.
                  &quot;operatorName&quot;: &quot;A String&quot;, # The operator name of the property.
                  &quot;property&quot;: { # A typed name-value pair for structured data. The type of the value should be the same as the registered type for the `name` property in the object definition of `objectType`. # The name value pair for the property.
                    &quot;booleanValue&quot;: True or False,
                    &quot;dateValues&quot;: { # List of date values.
                      &quot;values&quot;: [
                        { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                          &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                          &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                          &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                        },
                      ],
                    },
                    &quot;doubleValues&quot;: { # List of double values.
                      &quot;values&quot;: [
                        3.14,
                      ],
                    },
                    &quot;enumValues&quot;: { # List of enum values.
                      &quot;values&quot;: [ # The maximum allowable length for string values is 32 characters.
                        &quot;A String&quot;,
                      ],
                    },
                    &quot;htmlValues&quot;: { # List of html values.
                      &quot;values&quot;: [ # The maximum allowable length for html values is 2048 characters.
                        &quot;A String&quot;,
                      ],
                    },
                    &quot;integerValues&quot;: { # List of integer values.
                      &quot;values&quot;: [
                        &quot;A String&quot;,
                      ],
                    },
                    &quot;name&quot;: &quot;A String&quot;, # The name of the property. This name should correspond to the name of the property that was registered for object definition in the schema. The maximum allowable length for this property is 256 characters.
                    &quot;objectValues&quot;: { # List of object values.
                      &quot;values&quot;: [
                        # Object with schema name: StructuredDataObject
                      ],
                    },
                    &quot;textValues&quot;: { # List of text values.
                      &quot;values&quot;: [ # The maximum allowable length for text values is 2048 characters.
                        &quot;A String&quot;,
                      ],
                    },
                    &quot;timestampValues&quot;: { # List of timestamp values.
                      &quot;values&quot;: [
                        &quot;A String&quot;,
                      ],
                    },
                  },
                },
              ],
            },
          ],
          &quot;objectTypeLabel&quot;: &quot;A String&quot;, # The display label for the object.
        },
        &quot;fields&quot;: [ # Indexed fields in structured data, returned as a generic named property.
          { # A typed name-value pair for structured data. The type of the value should be the same as the registered type for the `name` property in the object definition of `objectType`.
            &quot;booleanValue&quot;: True or False,
            &quot;dateValues&quot;: { # List of date values.
              &quot;values&quot;: [
                { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                  &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                  &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                },
              ],
            },
            &quot;doubleValues&quot;: { # List of double values.
              &quot;values&quot;: [
                3.14,
              ],
            },
            &quot;enumValues&quot;: { # List of enum values.
              &quot;values&quot;: [ # The maximum allowable length for string values is 32 characters.
                &quot;A String&quot;,
              ],
            },
            &quot;htmlValues&quot;: { # List of html values.
              &quot;values&quot;: [ # The maximum allowable length for html values is 2048 characters.
                &quot;A String&quot;,
              ],
            },
            &quot;integerValues&quot;: { # List of integer values.
              &quot;values&quot;: [
                &quot;A String&quot;,
              ],
            },
            &quot;name&quot;: &quot;A String&quot;, # The name of the property. This name should correspond to the name of the property that was registered for object definition in the schema. The maximum allowable length for this property is 256 characters.
            &quot;objectValues&quot;: { # List of object values.
              &quot;values&quot;: [
                # Object with schema name: StructuredDataObject
              ],
            },
            &quot;textValues&quot;: { # List of text values.
              &quot;values&quot;: [ # The maximum allowable length for text values is 2048 characters.
                &quot;A String&quot;,
              ],
            },
            &quot;timestampValues&quot;: { # List of timestamp values.
              &quot;values&quot;: [
                &quot;A String&quot;,
              ],
            },
          },
        ],
        &quot;mimeType&quot;: &quot;A String&quot;, # Mime type of the search result.
        &quot;objectType&quot;: &quot;A String&quot;, # Object type of the search result.
        &quot;owner&quot;: { # Object to represent a person. # Owner (usually creator) of the document or object of the search result.
          &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses
            { # A person&#x27;s email address.
              &quot;customType&quot;: &quot;A String&quot;, # If the value of type is custom, this property contains the custom type string.
              &quot;emailAddress&quot;: &quot;A String&quot;, # The email address.
              &quot;emailUrl&quot;: &quot;A String&quot;, # The URL to send email.
              &quot;primary&quot;: True or False, # Indicates if this is the user&#x27;s primary email. Only one entry can be marked as primary.
              &quot;type&quot;: &quot;A String&quot;, # The type of the email account. Acceptable values are: &quot;custom&quot;, &quot;home&quot;, &quot;other&quot;, &quot;work&quot;.
            },
          ],
          &quot;name&quot;: &quot;A String&quot;, # The resource name of the person to provide information about. See [`People.get`](https://developers.google.com/people/api/rest/v1/people/get) from the Google People API.
          &quot;obfuscatedId&quot;: &quot;A String&quot;, # Obfuscated ID of a person.
          &quot;personNames&quot;: [ # The person&#x27;s name
            { # A person&#x27;s name.
              &quot;displayName&quot;: &quot;A String&quot;, # The read-only display name formatted according to the locale specified by the viewer&#x27;s account or the `Accept-Language` HTTP header.
            },
          ],
          &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers
            { # A person&#x27;s Phone Number
              &quot;phoneNumber&quot;: &quot;A String&quot;, # The phone number of the person.
              &quot;type&quot;: &quot;A String&quot;,
            },
          ],
          &quot;photos&quot;: [ # A person&#x27;s read-only photo. A picture shown next to the person&#x27;s name to help others recognize the person in search results.
            { # A person&#x27;s photo.
              &quot;url&quot;: &quot;A String&quot;, # The URL of the photo.
            },
          ],
        },
        &quot;source&quot;: { # Defines sources for the suggest/search APIs. # The named source for the result, such as Gmail.
          &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
          &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
        },
        &quot;thumbnailUrl&quot;: &quot;A String&quot;, # The thumbnail URL of the result.
        &quot;updateTime&quot;: &quot;A String&quot;, # The last modified date for the object in the search result. If not set in the item, the value returned here is empty. When `updateTime` is used for calculating freshness and is not set, this value defaults to 2 years from the current time.
      },
      &quot;snippet&quot;: { # Snippet of the search result, which summarizes the content of the resulting page. # The concatenation of all snippets (summaries) available for this result.
        &quot;matchRanges&quot;: [ # The matched ranges in the snippet.
          { # Matched range of a snippet [start, end).
            &quot;end&quot;: 42, # End of the match in the snippet.
            &quot;start&quot;: 42, # Starting position of the match in the snippet.
          },
        ],
        &quot;snippet&quot;: &quot;A String&quot;, # The snippet of the document. May contain escaped HTML character that should be unescaped prior to rendering.
      },
      &quot;title&quot;: &quot;A String&quot;, # Title of the search result.
      &quot;url&quot;: &quot;A String&quot;, # The URL of the search result. The URL contains a Google redirect to the actual item. This URL is signed and shouldn&#x27;t be changed.
    },
  ],
  &quot;spellResults&quot;: [ # Suggested spelling for the query.
    {
      &quot;suggestedQuery&quot;: &quot;A String&quot;, # The suggested spelling of the query.
      &quot;suggestedQueryHtml&quot;: { # IMPORTANT: It is unsafe to accept this message from an untrusted source, since it&#x27;s trivial for an attacker to forge serialized messages that don&#x27;t fulfill the type&#x27;s safety contract -- for example, it could contain attacker controlled script. A system which receives a SafeHtmlProto implicitly trusts the producer of the SafeHtmlProto. So, it&#x27;s generally safe to return this message in RPC responses, but generally unsafe to accept it in RPC requests. # The sanitized HTML representing the spell corrected query that can be used in the UI. This usually has language-specific tags to mark up parts of the query that are spell checked.
        &quot;privateDoNotAccessOrElseSafeHtmlWrappedValue&quot;: &quot;A String&quot;, # IMPORTANT: Never set or read this field, even from tests, it is private. See documentation at the top of .proto file for programming language packages with which to create or read this message.
      },
      &quot;suggestionType&quot;: &quot;A String&quot;, # Suggestion triggered for the current query.
    },
  ],
  &quot;structuredResults&quot;: [ # Structured results for the user query. These results are not counted against the page_size.
    { # Structured results that are returned as part of search request.
      &quot;person&quot;: { # Object to represent a person. # Representation of a person
        &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses
          { # A person&#x27;s email address.
            &quot;customType&quot;: &quot;A String&quot;, # If the value of type is custom, this property contains the custom type string.
            &quot;emailAddress&quot;: &quot;A String&quot;, # The email address.
            &quot;emailUrl&quot;: &quot;A String&quot;, # The URL to send email.
            &quot;primary&quot;: True or False, # Indicates if this is the user&#x27;s primary email. Only one entry can be marked as primary.
            &quot;type&quot;: &quot;A String&quot;, # The type of the email account. Acceptable values are: &quot;custom&quot;, &quot;home&quot;, &quot;other&quot;, &quot;work&quot;.
          },
        ],
        &quot;name&quot;: &quot;A String&quot;, # The resource name of the person to provide information about. See [`People.get`](https://developers.google.com/people/api/rest/v1/people/get) from the Google People API.
        &quot;obfuscatedId&quot;: &quot;A String&quot;, # Obfuscated ID of a person.
        &quot;personNames&quot;: [ # The person&#x27;s name
          { # A person&#x27;s name.
            &quot;displayName&quot;: &quot;A String&quot;, # The read-only display name formatted according to the locale specified by the viewer&#x27;s account or the `Accept-Language` HTTP header.
          },
        ],
        &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers
          { # A person&#x27;s Phone Number
            &quot;phoneNumber&quot;: &quot;A String&quot;, # The phone number of the person.
            &quot;type&quot;: &quot;A String&quot;,
          },
        ],
        &quot;photos&quot;: [ # A person&#x27;s read-only photo. A picture shown next to the person&#x27;s name to help others recognize the person in search results.
          { # A person&#x27;s photo.
            &quot;url&quot;: &quot;A String&quot;, # The URL of the photo.
          },
        ],
      },
    },
  ],
}</pre>
</div>

<div class="method">
    <code class="details" id="suggest">suggest(body=None, x__xgafv=None)</code>
  <pre>Provides suggestions for autocompleting the query. **Note:** This API requires a standard end user account to execute. A service account can&#x27;t perform Query API requests directly; to use a service account to perform queries, set up [Google Workspace domain-wide delegation of authority](https://developers.google.com/cloud-search/docs/guides/delegation/).

Args:
  body: object, The request body.
    The object takes the form of:

{ # Request of suggest API.
  &quot;dataSourceRestrictions&quot;: [ # The sources to use for suggestions. If not specified, the data sources are taken from the current search application. NOTE: Suggestions are only supported for the following sources: * Third-party data sources * PredefinedSource.PERSON * PredefinedSource.GOOGLE_DRIVE
    { # Restriction on Datasource.
      &quot;filterOptions&quot;: [ # Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: &quot;objecttype&quot;, &quot;type&quot; and &quot;mimetype&quot;. For now, schema specific filters cannot be used to filter suggestions.
        { # Filter options to be applied on query.
          &quot;filter&quot;: { # A generic way of expressing filters in a query, which supports two approaches: **1. Setting a ValueFilter.** The name must match an operator_name defined in the schema for your data source. **2. Setting a CompositeFilter.** The filters are evaluated using the logical operator. The top-level operators can only be either an AND or a NOT. AND can appear only at the top-most level. OR can appear only under a top-level AND. # Generic filter to restrict the search, such as `lang:en`, `site:xyz`.
            &quot;compositeFilter&quot;: {
              &quot;logicOperator&quot;: &quot;A String&quot;, # The logic operator of the sub filter.
              &quot;subFilters&quot;: [ # Sub filters.
                # Object with schema name: Filter
              ],
            },
            &quot;valueFilter&quot;: {
              &quot;operatorName&quot;: &quot;A String&quot;, # The `operator_name` applied to the query, such as *price_greater_than*. The filter can work against both types of filters defined in the schema for your data source: 1. `operator_name`, where the query filters results by the property that matches the value. 2. `greater_than_operator_name` or `less_than_operator_name` in your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
              &quot;value&quot;: { # Definition of a single value with generic type. # The value to be compared with.
                &quot;booleanValue&quot;: True or False,
                &quot;dateValue&quot;: { # Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.
                  &quot;day&quot;: 42, # Day of month. Must be from 1 to 31 and valid for the year and month.
                  &quot;month&quot;: 42, # Month of date. Must be from 1 to 12.
                  &quot;year&quot;: 42, # Year of date. Must be from 1 to 9999.
                },
                &quot;doubleValue&quot;: 3.14,
                &quot;integerValue&quot;: &quot;A String&quot;,
                &quot;stringValue&quot;: &quot;A String&quot;,
                &quot;timestampValue&quot;: &quot;A String&quot;,
              },
            },
          },
          &quot;objectType&quot;: &quot;A String&quot;, # If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
        },
      ],
      &quot;source&quot;: { # Defines sources for the suggest/search APIs. # The source of restriction.
        &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
        &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
      },
    },
  ],
  &quot;query&quot;: &quot;A String&quot;, # Partial query for which autocomplete suggestions will be shown. For example, if the query is &quot;sea&quot;, then the server might return &quot;season&quot;, &quot;search&quot;, &quot;seagull&quot; and so on.
  &quot;requestOptions&quot;: { # Shared request options for all RPC methods. # Request options, such as the search application and user timezone.
    &quot;debugOptions&quot;: { # Shared request debug options for all cloudsearch RPC methods. # Debug options of the request
      &quot;enableDebugging&quot;: True or False, # If you are asked by Google to help with debugging, set this field. Otherwise, ignore this field.
    },
    &quot;languageCode&quot;: &quot;A String&quot;, # The BCP-47 language code, such as &quot;en-US&quot; or &quot;sr-Latn&quot;. For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. For translations. Set this field using the language set in browser or for the page. In the event that the user&#x27;s language preference is known, set this field to the known user language. When specified, the documents in search results are biased towards the specified language. The Suggest API uses this field as a hint to make better third-party autocomplete predictions.
    &quot;searchApplicationId&quot;: &quot;A String&quot;, # The ID generated when you create a search application using the [admin console](https://support.google.com/a/answer/9043922).
    &quot;timeZone&quot;: &quot;A String&quot;, # Current user&#x27;s time zone id, such as &quot;America/Los_Angeles&quot; or &quot;Australia/Sydney&quot;. These IDs are defined by [Unicode Common Locale Data Repository (CLDR)](http://cldr.unicode.org/) project, and currently available in the file [timezone.xml](http://unicode.org/repos/cldr/trunk/common/bcp47/timezone.xml). This field is used to correctly interpret date and time queries. If this field is not specified, the default time zone (UTC) is used.
  },
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response of the suggest API.
  &quot;suggestResults&quot;: [ # List of suggestions.
    { # One suggestion result.
      &quot;peopleSuggestion&quot;: { # This field contains information about the person being suggested. # This is present when the suggestion indicates a person. It contains more information about the person - like their email ID, name etc.
        &quot;person&quot;: { # Object to represent a person. # Suggested person. All fields of the person object might not be populated.
          &quot;emailAddresses&quot;: [ # The person&#x27;s email addresses
            { # A person&#x27;s email address.
              &quot;customType&quot;: &quot;A String&quot;, # If the value of type is custom, this property contains the custom type string.
              &quot;emailAddress&quot;: &quot;A String&quot;, # The email address.
              &quot;emailUrl&quot;: &quot;A String&quot;, # The URL to send email.
              &quot;primary&quot;: True or False, # Indicates if this is the user&#x27;s primary email. Only one entry can be marked as primary.
              &quot;type&quot;: &quot;A String&quot;, # The type of the email account. Acceptable values are: &quot;custom&quot;, &quot;home&quot;, &quot;other&quot;, &quot;work&quot;.
            },
          ],
          &quot;name&quot;: &quot;A String&quot;, # The resource name of the person to provide information about. See [`People.get`](https://developers.google.com/people/api/rest/v1/people/get) from the Google People API.
          &quot;obfuscatedId&quot;: &quot;A String&quot;, # Obfuscated ID of a person.
          &quot;personNames&quot;: [ # The person&#x27;s name
            { # A person&#x27;s name.
              &quot;displayName&quot;: &quot;A String&quot;, # The read-only display name formatted according to the locale specified by the viewer&#x27;s account or the `Accept-Language` HTTP header.
            },
          ],
          &quot;phoneNumbers&quot;: [ # The person&#x27;s phone numbers
            { # A person&#x27;s Phone Number
              &quot;phoneNumber&quot;: &quot;A String&quot;, # The phone number of the person.
              &quot;type&quot;: &quot;A String&quot;,
            },
          ],
          &quot;photos&quot;: [ # A person&#x27;s read-only photo. A picture shown next to the person&#x27;s name to help others recognize the person in search results.
            { # A person&#x27;s photo.
              &quot;url&quot;: &quot;A String&quot;, # The URL of the photo.
            },
          ],
        },
      },
      &quot;querySuggestion&quot;: { # This field does not contain anything as of now and is just used as an indicator that the suggest result was a phrase completion. # This field will be present if the suggested query is a word/phrase completion.
      },
      &quot;source&quot;: { # Defines sources for the suggest/search APIs. # The source of the suggestion.
        &quot;name&quot;: &quot;A String&quot;, # Source name for content indexed by the Indexing API.
        &quot;predefinedSource&quot;: &quot;A String&quot;, # Predefined content source for Google Apps.
      },
      &quot;suggestedQuery&quot;: &quot;A String&quot;, # The suggested query that will be used for search, when the user clicks on the suggestion
    },
  ],
}</pre>
</div>

</body></html>