blob: 619e921d2d559de9e88bff53dc3b566c0f542456 [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<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
75<h1><a href="doubleclickbidmanager_v1.html">DoubleClick Bid Manager API</a> . <a href="doubleclickbidmanager_v1.queries.html">queries</a></h1>
76<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">
81 <code><a href="#createquery">createquery(body=None, x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040082<p class="firstline">Creates a query.</p>
83<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070084 <code><a href="#deletequery">deletequery(queryId, x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Deletes a stored query as well as the associated stored reports.</p>
86<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070087 <code><a href="#getquery">getquery(queryId, x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Retrieves a stored query.</p>
89<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070090 <code><a href="#listqueries">listqueries(x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040091<p class="firstline">Retrieves stored queries.</p>
92<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070093 <code><a href="#runquery">runquery(queryId, body=None, x__xgafv=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040094<p class="firstline">Runs a stored query to generate a report.</p>
95<h3>Method Details</h3>
96<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070097 <code class="details" id="close">close()</code>
98 <pre>Close httplib2 connections.</pre>
99</div>
100
101<div class="method">
102 <code class="details" id="createquery">createquery(body=None, x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400103 <pre>Creates a query.
104
105Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700106 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400107 The object takes the form of:
108
109{ # Represents a query.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700110 &quot;reportDataStartTimeMs&quot;: &quot;A String&quot;, # The starting time for the data that is shown in the report. Note, reportDataStartTimeMs is required if metadata.dataRange is CUSTOM_DATES and ignored otherwise.
111 &quot;schedule&quot;: { # Information on how frequently and when to run a query. # Information on how often and when to run a query.
112 &quot;nextRunMinuteOfDay&quot;: 42, # Deprecated. This field has no effect.
113 &quot;endTimeMs&quot;: &quot;A String&quot;, # Datetime to periodically run the query until.
114 &quot;nextRunTimezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report generation time. Defaults to America/New_York.
115 &quot;frequency&quot;: &quot;A String&quot;, # How often the query is run.
116 },
117 &quot;reportDataEndTimeMs&quot;: &quot;A String&quot;, # The ending time for the data that is shown in the report. Note, reportDataEndTimeMs is required if metadata.dataRange is CUSTOM_DATES and ignored otherwise.
118 &quot;timezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report data time. Defaults to America/New_York.
119 &quot;params&quot;: { # Parameters of a query or report. # Query parameters.
120 &quot;type&quot;: &quot;A String&quot;, # Report type.
121 &quot;filters&quot;: [ # Filters used to match traffic data in your report.
122 { # Filter used to match traffic data in your report.
123 &quot;type&quot;: &quot;A String&quot;, # Filter type.
124 &quot;value&quot;: &quot;A String&quot;, # Filter value.
125 },
126 ],
127 &quot;metrics&quot;: [ # Metrics to include as columns in your report.
128 &quot;A String&quot;,
129 ],
130 &quot;includeInviteData&quot;: True or False, # Deprecated. This field is no longer in use.
131 &quot;groupBys&quot;: [ # Data is grouped by the filters listed in this field.
132 &quot;A String&quot;,
133 ],
134 },
135 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;doubleclickbidmanager#query&quot;.
136 &quot;metadata&quot;: { # Query metadata. # Query metadata.
137 &quot;format&quot;: &quot;A String&quot;, # Format of the generated report.
138 &quot;title&quot;: &quot;A String&quot;, # Query title. It is used to name the reports generated from this query.
139 &quot;locale&quot;: &quot;A String&quot;, # Locale of the generated reports. Valid values are cs CZECH de GERMAN en ENGLISH es SPANISH fr FRENCH it ITALIAN ja JAPANESE ko KOREAN pl POLISH pt-BR BRAZILIAN_PORTUGUESE ru RUSSIAN tr TURKISH uk UKRAINIAN zh-CN CHINA_CHINESE zh-TW TAIWAN_CHINESE An locale string not in the list above will generate reports in English.
140 &quot;running&quot;: True or False, # Whether the latest report is currently running.
141 &quot;reportCount&quot;: 42, # Number of reports that have been generated for the query.
142 &quot;latestReportRunTimeMs&quot;: &quot;A String&quot;, # The time when the latest report started to run.
143 &quot;shareEmailAddress&quot;: [ # List of email addresses which are sent email notifications when the report is finished. Separate from sendNotification.
144 &quot;A String&quot;,
145 ],
146 &quot;dataRange&quot;: &quot;A String&quot;, # Range of report data.
147 &quot;googleDrivePathForLatestReport&quot;: &quot;A String&quot;, # The path in Google Drive for the latest report.
148 &quot;googleCloudStoragePathForLatestReport&quot;: &quot;A String&quot;, # The path to the location in Google Cloud Storage where the latest report is stored.
149 &quot;sendNotification&quot;: True or False, # Whether to send an email notification when a report is ready. Default to false.
150 },
151 &quot;queryId&quot;: &quot;A String&quot;, # Query ID.
152}
153
154 x__xgafv: string, V1 error format.
155 Allowed values
156 1 - v1 error format
157 2 - v2 error format
158
159Returns:
160 An object of the form:
161
162 { # Represents a query.
163 &quot;reportDataStartTimeMs&quot;: &quot;A String&quot;, # The starting time for the data that is shown in the report. Note, reportDataStartTimeMs is required if metadata.dataRange is CUSTOM_DATES and ignored otherwise.
164 &quot;schedule&quot;: { # Information on how frequently and when to run a query. # Information on how often and when to run a query.
165 &quot;nextRunMinuteOfDay&quot;: 42, # Deprecated. This field has no effect.
166 &quot;endTimeMs&quot;: &quot;A String&quot;, # Datetime to periodically run the query until.
167 &quot;nextRunTimezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report generation time. Defaults to America/New_York.
168 &quot;frequency&quot;: &quot;A String&quot;, # How often the query is run.
Bu Sun Kim65020912020-05-20 12:08:20 -0700169 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700170 &quot;reportDataEndTimeMs&quot;: &quot;A String&quot;, # The ending time for the data that is shown in the report. Note, reportDataEndTimeMs is required if metadata.dataRange is CUSTOM_DATES and ignored otherwise.
171 &quot;timezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report data time. Defaults to America/New_York.
Bu Sun Kim65020912020-05-20 12:08:20 -0700172 &quot;params&quot;: { # Parameters of a query or report. # Query parameters.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700173 &quot;type&quot;: &quot;A String&quot;, # Report type.
Bu Sun Kim65020912020-05-20 12:08:20 -0700174 &quot;filters&quot;: [ # Filters used to match traffic data in your report.
175 { # Filter used to match traffic data in your report.
176 &quot;type&quot;: &quot;A String&quot;, # Filter type.
177 &quot;value&quot;: &quot;A String&quot;, # Filter value.
178 },
179 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700180 &quot;metrics&quot;: [ # Metrics to include as columns in your report.
181 &quot;A String&quot;,
182 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700183 &quot;includeInviteData&quot;: True or False, # Deprecated. This field is no longer in use.
184 &quot;groupBys&quot;: [ # Data is grouped by the filters listed in this field.
185 &quot;A String&quot;,
186 ],
187 },
188 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;doubleclickbidmanager#query&quot;.
189 &quot;metadata&quot;: { # Query metadata. # Query metadata.
190 &quot;format&quot;: &quot;A String&quot;, # Format of the generated report.
191 &quot;title&quot;: &quot;A String&quot;, # Query title. It is used to name the reports generated from this query.
192 &quot;locale&quot;: &quot;A String&quot;, # Locale of the generated reports. Valid values are cs CZECH de GERMAN en ENGLISH es SPANISH fr FRENCH it ITALIAN ja JAPANESE ko KOREAN pl POLISH pt-BR BRAZILIAN_PORTUGUESE ru RUSSIAN tr TURKISH uk UKRAINIAN zh-CN CHINA_CHINESE zh-TW TAIWAN_CHINESE An locale string not in the list above will generate reports in English.
193 &quot;running&quot;: True or False, # Whether the latest report is currently running.
194 &quot;reportCount&quot;: 42, # Number of reports that have been generated for the query.
195 &quot;latestReportRunTimeMs&quot;: &quot;A String&quot;, # The time when the latest report started to run.
196 &quot;shareEmailAddress&quot;: [ # List of email addresses which are sent email notifications when the report is finished. Separate from sendNotification.
197 &quot;A String&quot;,
198 ],
199 &quot;dataRange&quot;: &quot;A String&quot;, # Range of report data.
200 &quot;googleDrivePathForLatestReport&quot;: &quot;A String&quot;, # The path in Google Drive for the latest report.
201 &quot;googleCloudStoragePathForLatestReport&quot;: &quot;A String&quot;, # The path to the location in Google Cloud Storage where the latest report is stored.
202 &quot;sendNotification&quot;: True or False, # Whether to send an email notification when a report is ready. Default to false.
Bu Sun Kim65020912020-05-20 12:08:20 -0700203 },
204 &quot;queryId&quot;: &quot;A String&quot;, # Query ID.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700205 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400206</div>
207
208<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700209 <code class="details" id="deletequery">deletequery(queryId, x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400210 <pre>Deletes a stored query as well as the associated stored reports.
211
212Args:
213 queryId: string, Query ID to delete. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700214 x__xgafv: string, V1 error format.
215 Allowed values
216 1 - v1 error format
217 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400218</pre>
219</div>
220
221<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700222 <code class="details" id="getquery">getquery(queryId, x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400223 <pre>Retrieves a stored query.
224
225Args:
226 queryId: string, Query ID to retrieve. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700227 x__xgafv: string, V1 error format.
228 Allowed values
229 1 - v1 error format
230 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400231
232Returns:
233 An object of the form:
234
235 { # Represents a query.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700236 &quot;reportDataStartTimeMs&quot;: &quot;A String&quot;, # The starting time for the data that is shown in the report. Note, reportDataStartTimeMs is required if metadata.dataRange is CUSTOM_DATES and ignored otherwise.
237 &quot;schedule&quot;: { # Information on how frequently and when to run a query. # Information on how often and when to run a query.
238 &quot;nextRunMinuteOfDay&quot;: 42, # Deprecated. This field has no effect.
239 &quot;endTimeMs&quot;: &quot;A String&quot;, # Datetime to periodically run the query until.
240 &quot;nextRunTimezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report generation time. Defaults to America/New_York.
241 &quot;frequency&quot;: &quot;A String&quot;, # How often the query is run.
242 },
243 &quot;reportDataEndTimeMs&quot;: &quot;A String&quot;, # The ending time for the data that is shown in the report. Note, reportDataEndTimeMs is required if metadata.dataRange is CUSTOM_DATES and ignored otherwise.
244 &quot;timezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report data time. Defaults to America/New_York.
245 &quot;params&quot;: { # Parameters of a query or report. # Query parameters.
246 &quot;type&quot;: &quot;A String&quot;, # Report type.
247 &quot;filters&quot;: [ # Filters used to match traffic data in your report.
248 { # Filter used to match traffic data in your report.
249 &quot;type&quot;: &quot;A String&quot;, # Filter type.
250 &quot;value&quot;: &quot;A String&quot;, # Filter value.
251 },
252 ],
253 &quot;metrics&quot;: [ # Metrics to include as columns in your report.
254 &quot;A String&quot;,
255 ],
256 &quot;includeInviteData&quot;: True or False, # Deprecated. This field is no longer in use.
257 &quot;groupBys&quot;: [ # Data is grouped by the filters listed in this field.
258 &quot;A String&quot;,
259 ],
260 },
261 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;doubleclickbidmanager#query&quot;.
262 &quot;metadata&quot;: { # Query metadata. # Query metadata.
263 &quot;format&quot;: &quot;A String&quot;, # Format of the generated report.
264 &quot;title&quot;: &quot;A String&quot;, # Query title. It is used to name the reports generated from this query.
265 &quot;locale&quot;: &quot;A String&quot;, # Locale of the generated reports. Valid values are cs CZECH de GERMAN en ENGLISH es SPANISH fr FRENCH it ITALIAN ja JAPANESE ko KOREAN pl POLISH pt-BR BRAZILIAN_PORTUGUESE ru RUSSIAN tr TURKISH uk UKRAINIAN zh-CN CHINA_CHINESE zh-TW TAIWAN_CHINESE An locale string not in the list above will generate reports in English.
266 &quot;running&quot;: True or False, # Whether the latest report is currently running.
267 &quot;reportCount&quot;: 42, # Number of reports that have been generated for the query.
268 &quot;latestReportRunTimeMs&quot;: &quot;A String&quot;, # The time when the latest report started to run.
269 &quot;shareEmailAddress&quot;: [ # List of email addresses which are sent email notifications when the report is finished. Separate from sendNotification.
270 &quot;A String&quot;,
271 ],
272 &quot;dataRange&quot;: &quot;A String&quot;, # Range of report data.
273 &quot;googleDrivePathForLatestReport&quot;: &quot;A String&quot;, # The path in Google Drive for the latest report.
274 &quot;googleCloudStoragePathForLatestReport&quot;: &quot;A String&quot;, # The path to the location in Google Cloud Storage where the latest report is stored.
275 &quot;sendNotification&quot;: True or False, # Whether to send an email notification when a report is ready. Default to false.
276 },
277 &quot;queryId&quot;: &quot;A String&quot;, # Query ID.
278 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400279</div>
280
281<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700282 <code class="details" id="listqueries">listqueries(x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400283 <pre>Retrieves stored queries.
284
285Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700286 x__xgafv: string, V1 error format.
287 Allowed values
288 1 - v1 error format
289 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400290
291Returns:
292 An object of the form:
293
294 { # List queries response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700295 &quot;queries&quot;: [ # Retrieved queries.
John Asmuth614db982014-04-24 15:46:26 -0400296 { # Represents a query.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700297 &quot;reportDataStartTimeMs&quot;: &quot;A String&quot;, # The starting time for the data that is shown in the report. Note, reportDataStartTimeMs is required if metadata.dataRange is CUSTOM_DATES and ignored otherwise.
298 &quot;schedule&quot;: { # Information on how frequently and when to run a query. # Information on how often and when to run a query.
299 &quot;nextRunMinuteOfDay&quot;: 42, # Deprecated. This field has no effect.
300 &quot;endTimeMs&quot;: &quot;A String&quot;, # Datetime to periodically run the query until.
301 &quot;nextRunTimezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report generation time. Defaults to America/New_York.
302 &quot;frequency&quot;: &quot;A String&quot;, # How often the query is run.
John Asmuth614db982014-04-24 15:46:26 -0400303 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700304 &quot;reportDataEndTimeMs&quot;: &quot;A String&quot;, # The ending time for the data that is shown in the report. Note, reportDataEndTimeMs is required if metadata.dataRange is CUSTOM_DATES and ignored otherwise.
305 &quot;timezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report data time. Defaults to America/New_York.
306 &quot;params&quot;: { # Parameters of a query or report. # Query parameters.
307 &quot;type&quot;: &quot;A String&quot;, # Report type.
308 &quot;filters&quot;: [ # Filters used to match traffic data in your report.
309 { # Filter used to match traffic data in your report.
310 &quot;type&quot;: &quot;A String&quot;, # Filter type.
311 &quot;value&quot;: &quot;A String&quot;, # Filter value.
312 },
313 ],
314 &quot;metrics&quot;: [ # Metrics to include as columns in your report.
315 &quot;A String&quot;,
316 ],
317 &quot;includeInviteData&quot;: True or False, # Deprecated. This field is no longer in use.
318 &quot;groupBys&quot;: [ # Data is grouped by the filters listed in this field.
319 &quot;A String&quot;,
320 ],
321 },
322 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;doubleclickbidmanager#query&quot;.
323 &quot;metadata&quot;: { # Query metadata. # Query metadata.
324 &quot;format&quot;: &quot;A String&quot;, # Format of the generated report.
325 &quot;title&quot;: &quot;A String&quot;, # Query title. It is used to name the reports generated from this query.
326 &quot;locale&quot;: &quot;A String&quot;, # Locale of the generated reports. Valid values are cs CZECH de GERMAN en ENGLISH es SPANISH fr FRENCH it ITALIAN ja JAPANESE ko KOREAN pl POLISH pt-BR BRAZILIAN_PORTUGUESE ru RUSSIAN tr TURKISH uk UKRAINIAN zh-CN CHINA_CHINESE zh-TW TAIWAN_CHINESE An locale string not in the list above will generate reports in English.
327 &quot;running&quot;: True or False, # Whether the latest report is currently running.
328 &quot;reportCount&quot;: 42, # Number of reports that have been generated for the query.
329 &quot;latestReportRunTimeMs&quot;: &quot;A String&quot;, # The time when the latest report started to run.
330 &quot;shareEmailAddress&quot;: [ # List of email addresses which are sent email notifications when the report is finished. Separate from sendNotification.
331 &quot;A String&quot;,
332 ],
333 &quot;dataRange&quot;: &quot;A String&quot;, # Range of report data.
334 &quot;googleDrivePathForLatestReport&quot;: &quot;A String&quot;, # The path in Google Drive for the latest report.
335 &quot;googleCloudStoragePathForLatestReport&quot;: &quot;A String&quot;, # The path to the location in Google Cloud Storage where the latest report is stored.
336 &quot;sendNotification&quot;: True or False, # Whether to send an email notification when a report is ready. Default to false.
337 },
338 &quot;queryId&quot;: &quot;A String&quot;, # Query ID.
339 },
John Asmuth614db982014-04-24 15:46:26 -0400340 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700341 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;doubleclickbidmanager#listQueriesResponse&quot;.
John Asmuth614db982014-04-24 15:46:26 -0400342 }</pre>
343</div>
344
345<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700346 <code class="details" id="runquery">runquery(queryId, body=None, x__xgafv=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400347 <pre>Runs a stored query to generate a report.
348
349Args:
350 queryId: string, Query ID to run. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700351 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400352 The object takes the form of:
353
354{ # Request to run a stored query to generate a report.
Bu Sun Kim65020912020-05-20 12:08:20 -0700355 &quot;timezoneCode&quot;: &quot;A String&quot;, # Canonical timezone code for report data time. Defaults to America/New_York.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700356 &quot;dataRange&quot;: &quot;A String&quot;, # Report data range used to generate the report.
357 &quot;reportDataStartTimeMs&quot;: &quot;A String&quot;, # The starting time for the data that is shown in the report. Note, reportDataStartTimeMs is required if dataRange is CUSTOM_DATES and ignored otherwise.
358 &quot;reportDataEndTimeMs&quot;: &quot;A String&quot;, # The ending time for the data that is shown in the report. Note, reportDataEndTimeMs is required if dataRange is CUSTOM_DATES and ignored otherwise.
John Asmuth614db982014-04-24 15:46:26 -0400359 }
360
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700361 x__xgafv: string, V1 error format.
362 Allowed values
363 1 - v1 error format
364 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400365</pre>
366</div>
367
368</body></html>