blob: 8b391211bc0388b5690e06c0e342956202662d8e [file] [log] [blame]
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -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="adexchangebuyer2_v2beta1.html">Ad Exchange Buyer API II</a> . <a href="adexchangebuyer2_v2beta1.accounts.html">accounts</a> . <a href="adexchangebuyer2_v2beta1.accounts.creatives.html">creatives</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="adexchangebuyer2_v2beta1.accounts.creatives.dealAssociations.html">dealAssociations()</a></code>
79</p>
80<p class="firstline">Returns the dealAssociations Resource.</p>
81
82<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070083 <code><a href="#close">close()</a></code></p>
84<p class="firstline">Close httplib2 connections.</p>
85<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070086 <code><a href="#create">create(accountId, body=None, duplicateIdMode=None, x__xgafv=None)</a></code></p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -040087<p class="firstline">Creates a creative.</p>
88<p class="toc_element">
89 <code><a href="#get">get(accountId, creativeId, x__xgafv=None)</a></code></p>
90<p class="firstline">Gets a creative.</p>
91<p class="toc_element">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080092 <code><a href="#list">list(accountId, query=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -040093<p class="firstline">Lists creatives.</p>
94<p class="toc_element">
95 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
96<p class="firstline">Retrieves the next page of results.</p>
97<p class="toc_element">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070098 <code><a href="#stopWatching">stopWatching(accountId, creativeId, body=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070099<p class="firstline">Stops watching a creative. Will stop push notifications being sent to the topics when the creative changes status.</p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400100<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -0700101 <code><a href="#update">update(accountId, creativeId, body=None, x__xgafv=None)</a></code></p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400102<p class="firstline">Updates a creative.</p>
103<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -0700104 <code><a href="#watch">watch(accountId, creativeId, body=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700105<p class="firstline">Watches a creative. Will result in push notifications being sent to the topic when the creative changes status.</p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400106<h3>Method Details</h3>
107<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700108 <code class="details" id="close">close()</code>
109 <pre>Close httplib2 connections.</pre>
110</div>
111
112<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700113 <code class="details" id="create">create(accountId, body=None, duplicateIdMode=None, x__xgafv=None)</code>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400114 <pre>Creates a creative.
115
116Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700117 accountId: string, The account that this creative belongs to. Can be used to filter the response of the creatives.list method. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700118 body: object, The request body.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400119 The object takes the form of:
120
121{ # A creative and its classification data.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800122 &quot;attributes&quot;: [ # All attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
123 &quot;A String&quot;,
124 ],
125 &quot;servingRestrictions&quot;: [ # Output only. The granular status of this ad in specific contexts. A context here relates to where something ultimately serves (for example, a physical location, a platform, an HTTPS vs HTTP request, or the type of auction).
126 { # Output only. A representation of the status of an ad in a specific context. A context here relates to where something ultimately serves (for example, a user or publisher geo, a platform, an HTTPS vs HTTP request, or the type of auction).
127 &quot;disapproval&quot;: { # Output only. The reason and details for a disapproval. # Disapproval bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800128 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700129 &quot;details&quot;: [ # Additional details about the reason for disapproval.
130 &quot;A String&quot;,
131 ],
132 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800133 &quot;contexts&quot;: [ # The contexts for the restriction.
134 { # The serving context for this restriction.
135 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
136 &quot;platforms&quot;: [ # The platforms this restriction applies to.
137 &quot;A String&quot;,
138 ],
139 },
140 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
141 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
142 &quot;A String&quot;,
143 ],
144 },
145 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
146 &quot;appTypes&quot;: [ # The app types this restriction applies to.
147 &quot;A String&quot;,
148 ],
149 },
150 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
151 &quot;securities&quot;: [ # The security types in this context.
152 &quot;A String&quot;,
153 ],
154 },
155 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
156 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
157 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
158 42,
159 ],
160 },
161 },
162 ],
163 &quot;disapprovalReasons&quot;: [ # Any disapprovals bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method. Deprecated; please use disapproval field instead.
164 { # Output only. The reason and details for a disapproval.
165 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
166 &quot;details&quot;: [ # Additional details about the reason for disapproval.
167 &quot;A String&quot;,
168 ],
169 },
170 ],
171 &quot;status&quot;: &quot;A String&quot;, # The status of the creative in this context (for example, it has been explicitly disapproved or is pending review).
172 },
173 ],
174 &quot;dealsStatus&quot;: &quot;A String&quot;, # Output only. The top-level deals status of this creative. If disapproved, an entry for &#x27;auctionType=DIRECT_DEALS&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
175 &quot;detectedDomains&quot;: [ # Output only. The detected domains for this creative.
176 &quot;A String&quot;,
177 ],
178 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
179 &quot;width&quot;: 42, # The width of the HTML snippet in pixels.
180 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
181 &quot;height&quot;: 42, # The height of the HTML snippet in pixels.
182 },
183 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
184 &quot;creativeId&quot;: &quot;A String&quot;, # The buyer-defined creative ID of this creative. Can be used to filter the response of the creatives.list method.
185 &quot;detectedLanguages&quot;: [ # Output only. The detected languages for this creative. The order is arbitrary. The codes are 2 or 5 characters and are documented at https://developers.google.com/adwords/api/docs/appendix/languagecodes.
186 &quot;A String&quot;,
187 ],
188 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative.
189 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page.
190 &quot;native&quot;: { # Native content for a creative. # A native creative.
191 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
192 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
193 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
194 &quot;logo&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A smaller image, for the advertiser&#x27;s logo.
195 &quot;height&quot;: 42, # Image height in pixels.
196 &quot;width&quot;: 42, # Image width in pixels.
197 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
198 },
199 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
200 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
201 &quot;image&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A large image.
202 &quot;height&quot;: 42, # Image height in pixels.
203 &quot;width&quot;: 42, # Image width in pixels.
204 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
205 },
206 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
207 &quot;storeUrl&quot;: &quot;A String&quot;, # The URL to the app store to purchase/download the promoted app.
208 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
209 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
210 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
211 &quot;appIcon&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # The app icon, for app download ads.
212 &quot;height&quot;: 42, # Image height in pixels.
213 &quot;width&quot;: 42, # Image width in pixels.
214 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
215 },
216 },
217 &quot;detectedSensitiveCategories&quot;: [ # Output only. Detected sensitive categories, if any. See the ad-sensitive-categories.txt file in the technical documentation for a list of IDs. You should use these IDs along with the excluded-sensitive-category field in the bid request to filter your bids.
218 42,
219 ],
220 &quot;corrections&quot;: [ # Output only. Shows any corrections that were applied to this creative.
221 { # Output only. Shows any corrections that were applied to this creative.
222 &quot;contexts&quot;: [ # The contexts for the correction.
223 { # The serving context for this restriction.
224 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
225 &quot;platforms&quot;: [ # The platforms this restriction applies to.
226 &quot;A String&quot;,
227 ],
228 },
229 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
230 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
231 &quot;A String&quot;,
232 ],
233 },
234 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
235 &quot;appTypes&quot;: [ # The app types this restriction applies to.
236 &quot;A String&quot;,
237 ],
238 },
239 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
240 &quot;securities&quot;: [ # The security types in this context.
241 &quot;A String&quot;,
242 ],
243 },
244 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
245 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
246 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
247 42,
248 ],
249 },
250 },
251 ],
252 &quot;type&quot;: &quot;A String&quot;, # The type of correction that was applied to the creative.
253 &quot;details&quot;: [ # Additional details about what was corrected.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700254 &quot;A String&quot;,
255 ],
256 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800257 ],
258 &quot;video&quot;: { # Video content for a creative. # A video creative.
259 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
260 &quot;videoVastXml&quot;: &quot;A String&quot;, # The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800261 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800262 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800263 &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700264 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800265 &quot;detectedAdvertiserIds&quot;: [ # Output only. Detected advertiser IDs, if any.
266 &quot;A String&quot;,
267 ],
268 &quot;clickThroughUrls&quot;: [ # The set of destination URLs for the creative.
269 &quot;A String&quot;,
270 ],
271 &quot;detectedProductCategories&quot;: [ # Output only. Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs.
272 42,
273 ],
274 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # Output only. The detected ad technology providers.
275 &quot;detectedProviderIds&quot;: [ # The detected ad technology provider IDs for this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to provided name, a privacy policy URL, and a list of domains which can be attributed to the provider. If the creative contains provider IDs that are outside of those listed in the `BidRequest.adslot.consented_providers_settings.consented_providers` field on the (Google bid protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto] and the `BidRequest.user.ext.consented_providers_settings.consented_providers` field on the (OpenRTB protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/openrtb-adx-proto], and a bid is submitted with that creative for an impression that will serve to an EEA user, the bid will be filtered before the auction.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700276 &quot;A String&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700277 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800278 &quot;hasUnidentifiedProvider&quot;: True or False, # Whether the creative contains an unidentified ad technology provider. If true for a given creative, any bid submitted with that creative for an impression that will serve to an EEA user will be filtered before the auction.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700279 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800280 &quot;version&quot;: 42, # Output only. The version of this creative.
281 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
282 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
283 &quot;A String&quot;,
284 ],
285 &quot;openAuctionStatus&quot;: &quot;A String&quot;, # Output only. The top-level open auction status of this creative. If disapproved, an entry for &#x27;auctionType = OPEN_AUCTION&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
286 &quot;accountId&quot;: &quot;A String&quot;, # The account that this creative belongs to. Can be used to filter the response of the creatives.list method.
287 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
288 &quot;A String&quot;,
289 ],
290 &quot;vendorIds&quot;: [ # All vendor IDs for the ads that may be shown from this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values.
291 42,
292 ],
293 }
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400294
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700295 duplicateIdMode: string, Indicates if multiple creatives can share an ID or not. Default is NO_DUPLICATES (one ID per creative).
296 Allowed values
297 NO_DUPLICATES - Recommended. This means that an ID will be unique to a single creative. Multiple creatives will not share an ID.
298 FORCE_ENABLE_DUPLICATE_IDS - Not recommended. Using this option will allow multiple creatives to share the same ID. Get and Update requests will not be possible for any ID that has more than one creative associated. (List will still function.) This is only intended for backwards compatibility in cases where a single ID is already shared by multiple creatives from previous APIs.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400299 x__xgafv: string, V1 error format.
300 Allowed values
301 1 - v1 error format
302 2 - v2 error format
303
304Returns:
305 An object of the form:
306
307 { # A creative and its classification data.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800308 &quot;attributes&quot;: [ # All attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
309 &quot;A String&quot;,
310 ],
311 &quot;servingRestrictions&quot;: [ # Output only. The granular status of this ad in specific contexts. A context here relates to where something ultimately serves (for example, a physical location, a platform, an HTTPS vs HTTP request, or the type of auction).
312 { # Output only. A representation of the status of an ad in a specific context. A context here relates to where something ultimately serves (for example, a user or publisher geo, a platform, an HTTPS vs HTTP request, or the type of auction).
313 &quot;disapproval&quot;: { # Output only. The reason and details for a disapproval. # Disapproval bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800314 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700315 &quot;details&quot;: [ # Additional details about the reason for disapproval.
316 &quot;A String&quot;,
317 ],
318 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800319 &quot;contexts&quot;: [ # The contexts for the restriction.
320 { # The serving context for this restriction.
321 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
322 &quot;platforms&quot;: [ # The platforms this restriction applies to.
323 &quot;A String&quot;,
324 ],
325 },
326 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
327 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
328 &quot;A String&quot;,
329 ],
330 },
331 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
332 &quot;appTypes&quot;: [ # The app types this restriction applies to.
333 &quot;A String&quot;,
334 ],
335 },
336 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
337 &quot;securities&quot;: [ # The security types in this context.
338 &quot;A String&quot;,
339 ],
340 },
341 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
342 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
343 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
344 42,
345 ],
346 },
347 },
348 ],
349 &quot;disapprovalReasons&quot;: [ # Any disapprovals bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method. Deprecated; please use disapproval field instead.
350 { # Output only. The reason and details for a disapproval.
351 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
352 &quot;details&quot;: [ # Additional details about the reason for disapproval.
353 &quot;A String&quot;,
354 ],
355 },
356 ],
357 &quot;status&quot;: &quot;A String&quot;, # The status of the creative in this context (for example, it has been explicitly disapproved or is pending review).
358 },
359 ],
360 &quot;dealsStatus&quot;: &quot;A String&quot;, # Output only. The top-level deals status of this creative. If disapproved, an entry for &#x27;auctionType=DIRECT_DEALS&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
361 &quot;detectedDomains&quot;: [ # Output only. The detected domains for this creative.
362 &quot;A String&quot;,
363 ],
364 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
365 &quot;width&quot;: 42, # The width of the HTML snippet in pixels.
366 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
367 &quot;height&quot;: 42, # The height of the HTML snippet in pixels.
368 },
369 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
370 &quot;creativeId&quot;: &quot;A String&quot;, # The buyer-defined creative ID of this creative. Can be used to filter the response of the creatives.list method.
371 &quot;detectedLanguages&quot;: [ # Output only. The detected languages for this creative. The order is arbitrary. The codes are 2 or 5 characters and are documented at https://developers.google.com/adwords/api/docs/appendix/languagecodes.
372 &quot;A String&quot;,
373 ],
374 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative.
375 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page.
376 &quot;native&quot;: { # Native content for a creative. # A native creative.
377 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
378 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
379 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
380 &quot;logo&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A smaller image, for the advertiser&#x27;s logo.
381 &quot;height&quot;: 42, # Image height in pixels.
382 &quot;width&quot;: 42, # Image width in pixels.
383 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
384 },
385 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
386 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
387 &quot;image&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A large image.
388 &quot;height&quot;: 42, # Image height in pixels.
389 &quot;width&quot;: 42, # Image width in pixels.
390 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
391 },
392 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
393 &quot;storeUrl&quot;: &quot;A String&quot;, # The URL to the app store to purchase/download the promoted app.
394 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
395 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
396 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
397 &quot;appIcon&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # The app icon, for app download ads.
398 &quot;height&quot;: 42, # Image height in pixels.
399 &quot;width&quot;: 42, # Image width in pixels.
400 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
401 },
402 },
403 &quot;detectedSensitiveCategories&quot;: [ # Output only. Detected sensitive categories, if any. See the ad-sensitive-categories.txt file in the technical documentation for a list of IDs. You should use these IDs along with the excluded-sensitive-category field in the bid request to filter your bids.
404 42,
405 ],
406 &quot;corrections&quot;: [ # Output only. Shows any corrections that were applied to this creative.
407 { # Output only. Shows any corrections that were applied to this creative.
408 &quot;contexts&quot;: [ # The contexts for the correction.
409 { # The serving context for this restriction.
410 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
411 &quot;platforms&quot;: [ # The platforms this restriction applies to.
412 &quot;A String&quot;,
413 ],
414 },
415 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
416 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
417 &quot;A String&quot;,
418 ],
419 },
420 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
421 &quot;appTypes&quot;: [ # The app types this restriction applies to.
422 &quot;A String&quot;,
423 ],
424 },
425 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
426 &quot;securities&quot;: [ # The security types in this context.
427 &quot;A String&quot;,
428 ],
429 },
430 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
431 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
432 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
433 42,
434 ],
435 },
436 },
437 ],
438 &quot;type&quot;: &quot;A String&quot;, # The type of correction that was applied to the creative.
439 &quot;details&quot;: [ # Additional details about what was corrected.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700440 &quot;A String&quot;,
441 ],
442 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800443 ],
444 &quot;video&quot;: { # Video content for a creative. # A video creative.
445 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
446 &quot;videoVastXml&quot;: &quot;A String&quot;, # The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800447 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800448 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800449 &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700450 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800451 &quot;detectedAdvertiserIds&quot;: [ # Output only. Detected advertiser IDs, if any.
452 &quot;A String&quot;,
453 ],
454 &quot;clickThroughUrls&quot;: [ # The set of destination URLs for the creative.
455 &quot;A String&quot;,
456 ],
457 &quot;detectedProductCategories&quot;: [ # Output only. Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs.
458 42,
459 ],
460 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # Output only. The detected ad technology providers.
461 &quot;detectedProviderIds&quot;: [ # The detected ad technology provider IDs for this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to provided name, a privacy policy URL, and a list of domains which can be attributed to the provider. If the creative contains provider IDs that are outside of those listed in the `BidRequest.adslot.consented_providers_settings.consented_providers` field on the (Google bid protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto] and the `BidRequest.user.ext.consented_providers_settings.consented_providers` field on the (OpenRTB protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/openrtb-adx-proto], and a bid is submitted with that creative for an impression that will serve to an EEA user, the bid will be filtered before the auction.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700462 &quot;A String&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700463 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800464 &quot;hasUnidentifiedProvider&quot;: True or False, # Whether the creative contains an unidentified ad technology provider. If true for a given creative, any bid submitted with that creative for an impression that will serve to an EEA user will be filtered before the auction.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700465 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800466 &quot;version&quot;: 42, # Output only. The version of this creative.
467 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
468 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
469 &quot;A String&quot;,
470 ],
471 &quot;openAuctionStatus&quot;: &quot;A String&quot;, # Output only. The top-level open auction status of this creative. If disapproved, an entry for &#x27;auctionType = OPEN_AUCTION&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
472 &quot;accountId&quot;: &quot;A String&quot;, # The account that this creative belongs to. Can be used to filter the response of the creatives.list method.
473 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
474 &quot;A String&quot;,
475 ],
476 &quot;vendorIds&quot;: [ # All vendor IDs for the ads that may be shown from this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values.
477 42,
478 ],
479 }</pre>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400480</div>
481
482<div class="method">
483 <code class="details" id="get">get(accountId, creativeId, x__xgafv=None)</code>
484 <pre>Gets a creative.
485
486Args:
487 accountId: string, The account the creative belongs to. (required)
488 creativeId: string, The ID of the creative to retrieve. (required)
489 x__xgafv: string, V1 error format.
490 Allowed values
491 1 - v1 error format
492 2 - v2 error format
493
494Returns:
495 An object of the form:
496
497 { # A creative and its classification data.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800498 &quot;attributes&quot;: [ # All attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
499 &quot;A String&quot;,
500 ],
501 &quot;servingRestrictions&quot;: [ # Output only. The granular status of this ad in specific contexts. A context here relates to where something ultimately serves (for example, a physical location, a platform, an HTTPS vs HTTP request, or the type of auction).
502 { # Output only. A representation of the status of an ad in a specific context. A context here relates to where something ultimately serves (for example, a user or publisher geo, a platform, an HTTPS vs HTTP request, or the type of auction).
503 &quot;disapproval&quot;: { # Output only. The reason and details for a disapproval. # Disapproval bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800504 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700505 &quot;details&quot;: [ # Additional details about the reason for disapproval.
506 &quot;A String&quot;,
507 ],
508 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800509 &quot;contexts&quot;: [ # The contexts for the restriction.
510 { # The serving context for this restriction.
511 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
512 &quot;platforms&quot;: [ # The platforms this restriction applies to.
513 &quot;A String&quot;,
514 ],
515 },
516 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
517 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
518 &quot;A String&quot;,
519 ],
520 },
521 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
522 &quot;appTypes&quot;: [ # The app types this restriction applies to.
523 &quot;A String&quot;,
524 ],
525 },
526 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
527 &quot;securities&quot;: [ # The security types in this context.
528 &quot;A String&quot;,
529 ],
530 },
531 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
532 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
533 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
534 42,
535 ],
536 },
537 },
538 ],
539 &quot;disapprovalReasons&quot;: [ # Any disapprovals bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method. Deprecated; please use disapproval field instead.
540 { # Output only. The reason and details for a disapproval.
541 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
542 &quot;details&quot;: [ # Additional details about the reason for disapproval.
543 &quot;A String&quot;,
544 ],
545 },
546 ],
547 &quot;status&quot;: &quot;A String&quot;, # The status of the creative in this context (for example, it has been explicitly disapproved or is pending review).
548 },
549 ],
550 &quot;dealsStatus&quot;: &quot;A String&quot;, # Output only. The top-level deals status of this creative. If disapproved, an entry for &#x27;auctionType=DIRECT_DEALS&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
551 &quot;detectedDomains&quot;: [ # Output only. The detected domains for this creative.
552 &quot;A String&quot;,
553 ],
554 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
555 &quot;width&quot;: 42, # The width of the HTML snippet in pixels.
556 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
557 &quot;height&quot;: 42, # The height of the HTML snippet in pixels.
558 },
559 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
560 &quot;creativeId&quot;: &quot;A String&quot;, # The buyer-defined creative ID of this creative. Can be used to filter the response of the creatives.list method.
561 &quot;detectedLanguages&quot;: [ # Output only. The detected languages for this creative. The order is arbitrary. The codes are 2 or 5 characters and are documented at https://developers.google.com/adwords/api/docs/appendix/languagecodes.
562 &quot;A String&quot;,
563 ],
564 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative.
565 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page.
566 &quot;native&quot;: { # Native content for a creative. # A native creative.
567 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
568 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
569 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
570 &quot;logo&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A smaller image, for the advertiser&#x27;s logo.
571 &quot;height&quot;: 42, # Image height in pixels.
572 &quot;width&quot;: 42, # Image width in pixels.
573 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
574 },
575 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
576 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
577 &quot;image&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A large image.
578 &quot;height&quot;: 42, # Image height in pixels.
579 &quot;width&quot;: 42, # Image width in pixels.
580 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
581 },
582 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
583 &quot;storeUrl&quot;: &quot;A String&quot;, # The URL to the app store to purchase/download the promoted app.
584 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
585 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
586 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
587 &quot;appIcon&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # The app icon, for app download ads.
588 &quot;height&quot;: 42, # Image height in pixels.
589 &quot;width&quot;: 42, # Image width in pixels.
590 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
591 },
592 },
593 &quot;detectedSensitiveCategories&quot;: [ # Output only. Detected sensitive categories, if any. See the ad-sensitive-categories.txt file in the technical documentation for a list of IDs. You should use these IDs along with the excluded-sensitive-category field in the bid request to filter your bids.
594 42,
595 ],
596 &quot;corrections&quot;: [ # Output only. Shows any corrections that were applied to this creative.
597 { # Output only. Shows any corrections that were applied to this creative.
598 &quot;contexts&quot;: [ # The contexts for the correction.
599 { # The serving context for this restriction.
600 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
601 &quot;platforms&quot;: [ # The platforms this restriction applies to.
602 &quot;A String&quot;,
603 ],
604 },
605 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
606 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
607 &quot;A String&quot;,
608 ],
609 },
610 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
611 &quot;appTypes&quot;: [ # The app types this restriction applies to.
612 &quot;A String&quot;,
613 ],
614 },
615 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
616 &quot;securities&quot;: [ # The security types in this context.
617 &quot;A String&quot;,
618 ],
619 },
620 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
621 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
622 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
623 42,
624 ],
625 },
626 },
627 ],
628 &quot;type&quot;: &quot;A String&quot;, # The type of correction that was applied to the creative.
629 &quot;details&quot;: [ # Additional details about what was corrected.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700630 &quot;A String&quot;,
631 ],
632 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800633 ],
634 &quot;video&quot;: { # Video content for a creative. # A video creative.
635 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
636 &quot;videoVastXml&quot;: &quot;A String&quot;, # The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800637 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800638 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800639 &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700640 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800641 &quot;detectedAdvertiserIds&quot;: [ # Output only. Detected advertiser IDs, if any.
642 &quot;A String&quot;,
643 ],
644 &quot;clickThroughUrls&quot;: [ # The set of destination URLs for the creative.
645 &quot;A String&quot;,
646 ],
647 &quot;detectedProductCategories&quot;: [ # Output only. Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs.
648 42,
649 ],
650 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # Output only. The detected ad technology providers.
651 &quot;detectedProviderIds&quot;: [ # The detected ad technology provider IDs for this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to provided name, a privacy policy URL, and a list of domains which can be attributed to the provider. If the creative contains provider IDs that are outside of those listed in the `BidRequest.adslot.consented_providers_settings.consented_providers` field on the (Google bid protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto] and the `BidRequest.user.ext.consented_providers_settings.consented_providers` field on the (OpenRTB protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/openrtb-adx-proto], and a bid is submitted with that creative for an impression that will serve to an EEA user, the bid will be filtered before the auction.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700652 &quot;A String&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700653 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800654 &quot;hasUnidentifiedProvider&quot;: True or False, # Whether the creative contains an unidentified ad technology provider. If true for a given creative, any bid submitted with that creative for an impression that will serve to an EEA user will be filtered before the auction.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700655 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800656 &quot;version&quot;: 42, # Output only. The version of this creative.
657 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
658 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
659 &quot;A String&quot;,
660 ],
661 &quot;openAuctionStatus&quot;: &quot;A String&quot;, # Output only. The top-level open auction status of this creative. If disapproved, an entry for &#x27;auctionType = OPEN_AUCTION&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
662 &quot;accountId&quot;: &quot;A String&quot;, # The account that this creative belongs to. Can be used to filter the response of the creatives.list method.
663 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
664 &quot;A String&quot;,
665 ],
666 &quot;vendorIds&quot;: [ # All vendor IDs for the ads that may be shown from this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values.
667 42,
668 ],
669 }</pre>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400670</div>
671
672<div class="method">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800673 <code class="details" id="list">list(accountId, query=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400674 <pre>Lists creatives.
675
676Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700677 accountId: string, The account to list the creatives from. Specify &quot;-&quot; to list all creatives the current user has access to. (required)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700678 query: string, An optional query string to filter creatives. If no filter is specified, all active creatives will be returned. Supported queries are: - accountId=*account_id_string* - creativeId=*creative_id_string* - dealsStatus: {approved, conditionally_approved, disapproved, not_checked} - openAuctionStatus: {approved, conditionally_approved, disapproved, not_checked} - attribute: {a numeric attribute from the list of attributes} - disapprovalReason: {a reason from DisapprovalReason} Example: &#x27;accountId=12345 AND (dealsStatus:disapproved AND disapprovalReason:unacceptable_content) OR attribute:47&#x27;
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800679 pageSize: integer, Requested page size. The server may return fewer creatives than requested (due to timeout constraint) even if more are available via another call. If unspecified, server will pick an appropriate default. Acceptable values are 1 to 1000, inclusive.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800680 pageToken: string, A token identifying a page of results the server should return. Typically, this is the value of ListCreativesResponse.next_page_token returned from the previous call to &#x27;ListCreatives&#x27; method.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400681 x__xgafv: string, V1 error format.
682 Allowed values
683 1 - v1 error format
684 2 - v2 error format
685
686Returns:
687 An object of the form:
688
689 { # A response for listing creatives.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700690 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve the next page of results. Pass this value in the ListCreativesRequest.page_token field in the subsequent call to `ListCreatives` method to retrieve the next page of results.
Bu Sun Kim65020912020-05-20 12:08:20 -0700691 &quot;creatives&quot;: [ # The list of creatives.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400692 { # A creative and its classification data.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800693 &quot;attributes&quot;: [ # All attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
694 &quot;A String&quot;,
695 ],
696 &quot;servingRestrictions&quot;: [ # Output only. The granular status of this ad in specific contexts. A context here relates to where something ultimately serves (for example, a physical location, a platform, an HTTPS vs HTTP request, or the type of auction).
697 { # Output only. A representation of the status of an ad in a specific context. A context here relates to where something ultimately serves (for example, a user or publisher geo, a platform, an HTTPS vs HTTP request, or the type of auction).
698 &quot;disapproval&quot;: { # Output only. The reason and details for a disapproval. # Disapproval bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800699 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700700 &quot;details&quot;: [ # Additional details about the reason for disapproval.
701 &quot;A String&quot;,
702 ],
703 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800704 &quot;contexts&quot;: [ # The contexts for the restriction.
705 { # The serving context for this restriction.
706 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
707 &quot;platforms&quot;: [ # The platforms this restriction applies to.
708 &quot;A String&quot;,
709 ],
710 },
711 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
712 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
713 &quot;A String&quot;,
714 ],
715 },
716 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
717 &quot;appTypes&quot;: [ # The app types this restriction applies to.
718 &quot;A String&quot;,
719 ],
720 },
721 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
722 &quot;securities&quot;: [ # The security types in this context.
723 &quot;A String&quot;,
724 ],
725 },
726 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
727 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
728 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
729 42,
730 ],
731 },
732 },
733 ],
734 &quot;disapprovalReasons&quot;: [ # Any disapprovals bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method. Deprecated; please use disapproval field instead.
735 { # Output only. The reason and details for a disapproval.
736 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
737 &quot;details&quot;: [ # Additional details about the reason for disapproval.
738 &quot;A String&quot;,
739 ],
740 },
741 ],
742 &quot;status&quot;: &quot;A String&quot;, # The status of the creative in this context (for example, it has been explicitly disapproved or is pending review).
743 },
744 ],
745 &quot;dealsStatus&quot;: &quot;A String&quot;, # Output only. The top-level deals status of this creative. If disapproved, an entry for &#x27;auctionType=DIRECT_DEALS&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
746 &quot;detectedDomains&quot;: [ # Output only. The detected domains for this creative.
747 &quot;A String&quot;,
748 ],
749 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
750 &quot;width&quot;: 42, # The width of the HTML snippet in pixels.
751 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
752 &quot;height&quot;: 42, # The height of the HTML snippet in pixels.
753 },
754 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
755 &quot;creativeId&quot;: &quot;A String&quot;, # The buyer-defined creative ID of this creative. Can be used to filter the response of the creatives.list method.
756 &quot;detectedLanguages&quot;: [ # Output only. The detected languages for this creative. The order is arbitrary. The codes are 2 or 5 characters and are documented at https://developers.google.com/adwords/api/docs/appendix/languagecodes.
757 &quot;A String&quot;,
758 ],
759 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative.
760 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page.
761 &quot;native&quot;: { # Native content for a creative. # A native creative.
762 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
763 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
764 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
765 &quot;logo&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A smaller image, for the advertiser&#x27;s logo.
766 &quot;height&quot;: 42, # Image height in pixels.
767 &quot;width&quot;: 42, # Image width in pixels.
768 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
769 },
770 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
771 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
772 &quot;image&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A large image.
773 &quot;height&quot;: 42, # Image height in pixels.
774 &quot;width&quot;: 42, # Image width in pixels.
775 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
776 },
777 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
778 &quot;storeUrl&quot;: &quot;A String&quot;, # The URL to the app store to purchase/download the promoted app.
779 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
780 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
781 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
782 &quot;appIcon&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # The app icon, for app download ads.
783 &quot;height&quot;: 42, # Image height in pixels.
784 &quot;width&quot;: 42, # Image width in pixels.
785 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
786 },
787 },
788 &quot;detectedSensitiveCategories&quot;: [ # Output only. Detected sensitive categories, if any. See the ad-sensitive-categories.txt file in the technical documentation for a list of IDs. You should use these IDs along with the excluded-sensitive-category field in the bid request to filter your bids.
789 42,
790 ],
791 &quot;corrections&quot;: [ # Output only. Shows any corrections that were applied to this creative.
792 { # Output only. Shows any corrections that were applied to this creative.
793 &quot;contexts&quot;: [ # The contexts for the correction.
794 { # The serving context for this restriction.
795 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
796 &quot;platforms&quot;: [ # The platforms this restriction applies to.
797 &quot;A String&quot;,
798 ],
799 },
800 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
801 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
802 &quot;A String&quot;,
803 ],
804 },
805 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
806 &quot;appTypes&quot;: [ # The app types this restriction applies to.
807 &quot;A String&quot;,
808 ],
809 },
810 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
811 &quot;securities&quot;: [ # The security types in this context.
812 &quot;A String&quot;,
813 ],
814 },
815 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
816 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
817 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
818 42,
819 ],
820 },
821 },
822 ],
823 &quot;type&quot;: &quot;A String&quot;, # The type of correction that was applied to the creative.
824 &quot;details&quot;: [ # Additional details about what was corrected.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700825 &quot;A String&quot;,
826 ],
827 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800828 ],
829 &quot;video&quot;: { # Video content for a creative. # A video creative.
830 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
831 &quot;videoVastXml&quot;: &quot;A String&quot;, # The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800832 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800833 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800834 &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700835 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800836 &quot;detectedAdvertiserIds&quot;: [ # Output only. Detected advertiser IDs, if any.
837 &quot;A String&quot;,
838 ],
839 &quot;clickThroughUrls&quot;: [ # The set of destination URLs for the creative.
840 &quot;A String&quot;,
841 ],
842 &quot;detectedProductCategories&quot;: [ # Output only. Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs.
843 42,
844 ],
845 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # Output only. The detected ad technology providers.
846 &quot;detectedProviderIds&quot;: [ # The detected ad technology provider IDs for this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to provided name, a privacy policy URL, and a list of domains which can be attributed to the provider. If the creative contains provider IDs that are outside of those listed in the `BidRequest.adslot.consented_providers_settings.consented_providers` field on the (Google bid protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto] and the `BidRequest.user.ext.consented_providers_settings.consented_providers` field on the (OpenRTB protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/openrtb-adx-proto], and a bid is submitted with that creative for an impression that will serve to an EEA user, the bid will be filtered before the auction.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700847 &quot;A String&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700848 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800849 &quot;hasUnidentifiedProvider&quot;: True or False, # Whether the creative contains an unidentified ad technology provider. If true for a given creative, any bid submitted with that creative for an impression that will serve to an EEA user will be filtered before the auction.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700850 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800851 &quot;version&quot;: 42, # Output only. The version of this creative.
852 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
853 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
854 &quot;A String&quot;,
855 ],
856 &quot;openAuctionStatus&quot;: &quot;A String&quot;, # Output only. The top-level open auction status of this creative. If disapproved, an entry for &#x27;auctionType = OPEN_AUCTION&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
857 &quot;accountId&quot;: &quot;A String&quot;, # The account that this creative belongs to. Can be used to filter the response of the creatives.list method.
858 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
859 &quot;A String&quot;,
860 ],
861 &quot;vendorIds&quot;: [ # All vendor IDs for the ads that may be shown from this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values.
862 42,
863 ],
864 },
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400865 ],
866 }</pre>
867</div>
868
869<div class="method">
870 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
871 <pre>Retrieves the next page of results.
872
873Args:
874 previous_request: The request for the previous page. (required)
875 previous_response: The response from the request for the previous page. (required)
876
877Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700878 A request object that you can call &#x27;execute()&#x27; on to request the next
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400879 page. Returns None if there are no more items in the collection.
880 </pre>
881</div>
882
883<div class="method">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700884 <code class="details" id="stopWatching">stopWatching(accountId, creativeId, body=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700885 <pre>Stops watching a creative. Will stop push notifications being sent to the topics when the creative changes status.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400886
887Args:
888 accountId: string, The account of the creative to stop notifications for. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700889 creativeId: string, The creative ID of the creative to stop notifications for. Specify &quot;-&quot; to specify stopping account level notifications. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700890 body: object, The request body.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400891 The object takes the form of:
892
893{ # A request for stopping notifications for changes to creative Status.
894 }
895
896 x__xgafv: string, V1 error format.
897 Allowed values
898 1 - v1 error format
899 2 - v2 error format
900
901Returns:
902 An object of the form:
903
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700904 { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400905 }</pre>
906</div>
907
908<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700909 <code class="details" id="update">update(accountId, creativeId, body=None, x__xgafv=None)</code>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400910 <pre>Updates a creative.
911
912Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700913 accountId: string, The account that this creative belongs to. Can be used to filter the response of the creatives.list method. (required)
914 creativeId: string, The buyer-defined creative ID of this creative. Can be used to filter the response of the creatives.list method. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700915 body: object, The request body.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400916 The object takes the form of:
917
918{ # A creative and its classification data.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800919 &quot;attributes&quot;: [ # All attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
920 &quot;A String&quot;,
921 ],
922 &quot;servingRestrictions&quot;: [ # Output only. The granular status of this ad in specific contexts. A context here relates to where something ultimately serves (for example, a physical location, a platform, an HTTPS vs HTTP request, or the type of auction).
923 { # Output only. A representation of the status of an ad in a specific context. A context here relates to where something ultimately serves (for example, a user or publisher geo, a platform, an HTTPS vs HTTP request, or the type of auction).
924 &quot;disapproval&quot;: { # Output only. The reason and details for a disapproval. # Disapproval bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800925 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700926 &quot;details&quot;: [ # Additional details about the reason for disapproval.
927 &quot;A String&quot;,
928 ],
929 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800930 &quot;contexts&quot;: [ # The contexts for the restriction.
931 { # The serving context for this restriction.
932 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
933 &quot;platforms&quot;: [ # The platforms this restriction applies to.
934 &quot;A String&quot;,
935 ],
936 },
937 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
938 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
939 &quot;A String&quot;,
940 ],
941 },
942 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
943 &quot;appTypes&quot;: [ # The app types this restriction applies to.
944 &quot;A String&quot;,
945 ],
946 },
947 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
948 &quot;securities&quot;: [ # The security types in this context.
949 &quot;A String&quot;,
950 ],
951 },
952 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
953 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
954 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
955 42,
956 ],
957 },
958 },
959 ],
960 &quot;disapprovalReasons&quot;: [ # Any disapprovals bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method. Deprecated; please use disapproval field instead.
961 { # Output only. The reason and details for a disapproval.
962 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
963 &quot;details&quot;: [ # Additional details about the reason for disapproval.
964 &quot;A String&quot;,
965 ],
966 },
967 ],
968 &quot;status&quot;: &quot;A String&quot;, # The status of the creative in this context (for example, it has been explicitly disapproved or is pending review).
969 },
970 ],
971 &quot;dealsStatus&quot;: &quot;A String&quot;, # Output only. The top-level deals status of this creative. If disapproved, an entry for &#x27;auctionType=DIRECT_DEALS&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
972 &quot;detectedDomains&quot;: [ # Output only. The detected domains for this creative.
973 &quot;A String&quot;,
974 ],
975 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
976 &quot;width&quot;: 42, # The width of the HTML snippet in pixels.
977 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
978 &quot;height&quot;: 42, # The height of the HTML snippet in pixels.
979 },
980 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
981 &quot;creativeId&quot;: &quot;A String&quot;, # The buyer-defined creative ID of this creative. Can be used to filter the response of the creatives.list method.
982 &quot;detectedLanguages&quot;: [ # Output only. The detected languages for this creative. The order is arbitrary. The codes are 2 or 5 characters and are documented at https://developers.google.com/adwords/api/docs/appendix/languagecodes.
983 &quot;A String&quot;,
984 ],
985 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative.
986 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page.
987 &quot;native&quot;: { # Native content for a creative. # A native creative.
988 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
989 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
990 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
991 &quot;logo&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A smaller image, for the advertiser&#x27;s logo.
992 &quot;height&quot;: 42, # Image height in pixels.
993 &quot;width&quot;: 42, # Image width in pixels.
994 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
995 },
996 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
997 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
998 &quot;image&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A large image.
999 &quot;height&quot;: 42, # Image height in pixels.
1000 &quot;width&quot;: 42, # Image width in pixels.
1001 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1002 },
1003 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
1004 &quot;storeUrl&quot;: &quot;A String&quot;, # The URL to the app store to purchase/download the promoted app.
1005 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
1006 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
1007 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
1008 &quot;appIcon&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # The app icon, for app download ads.
1009 &quot;height&quot;: 42, # Image height in pixels.
1010 &quot;width&quot;: 42, # Image width in pixels.
1011 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1012 },
1013 },
1014 &quot;detectedSensitiveCategories&quot;: [ # Output only. Detected sensitive categories, if any. See the ad-sensitive-categories.txt file in the technical documentation for a list of IDs. You should use these IDs along with the excluded-sensitive-category field in the bid request to filter your bids.
1015 42,
1016 ],
1017 &quot;corrections&quot;: [ # Output only. Shows any corrections that were applied to this creative.
1018 { # Output only. Shows any corrections that were applied to this creative.
1019 &quot;contexts&quot;: [ # The contexts for the correction.
1020 { # The serving context for this restriction.
1021 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
1022 &quot;platforms&quot;: [ # The platforms this restriction applies to.
1023 &quot;A String&quot;,
1024 ],
1025 },
1026 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
1027 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
1028 &quot;A String&quot;,
1029 ],
1030 },
1031 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
1032 &quot;appTypes&quot;: [ # The app types this restriction applies to.
1033 &quot;A String&quot;,
1034 ],
1035 },
1036 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
1037 &quot;securities&quot;: [ # The security types in this context.
1038 &quot;A String&quot;,
1039 ],
1040 },
1041 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
1042 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
1043 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
1044 42,
1045 ],
1046 },
1047 },
1048 ],
1049 &quot;type&quot;: &quot;A String&quot;, # The type of correction that was applied to the creative.
1050 &quot;details&quot;: [ # Additional details about what was corrected.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001051 &quot;A String&quot;,
1052 ],
1053 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001054 ],
1055 &quot;video&quot;: { # Video content for a creative. # A video creative.
1056 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
1057 &quot;videoVastXml&quot;: &quot;A String&quot;, # The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -08001058 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001059 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -08001060 &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001061 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001062 &quot;detectedAdvertiserIds&quot;: [ # Output only. Detected advertiser IDs, if any.
1063 &quot;A String&quot;,
1064 ],
1065 &quot;clickThroughUrls&quot;: [ # The set of destination URLs for the creative.
1066 &quot;A String&quot;,
1067 ],
1068 &quot;detectedProductCategories&quot;: [ # Output only. Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs.
1069 42,
1070 ],
1071 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # Output only. The detected ad technology providers.
1072 &quot;detectedProviderIds&quot;: [ # The detected ad technology provider IDs for this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to provided name, a privacy policy URL, and a list of domains which can be attributed to the provider. If the creative contains provider IDs that are outside of those listed in the `BidRequest.adslot.consented_providers_settings.consented_providers` field on the (Google bid protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto] and the `BidRequest.user.ext.consented_providers_settings.consented_providers` field on the (OpenRTB protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/openrtb-adx-proto], and a bid is submitted with that creative for an impression that will serve to an EEA user, the bid will be filtered before the auction.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001073 &quot;A String&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001074 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001075 &quot;hasUnidentifiedProvider&quot;: True or False, # Whether the creative contains an unidentified ad technology provider. If true for a given creative, any bid submitted with that creative for an impression that will serve to an EEA user will be filtered before the auction.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001076 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001077 &quot;version&quot;: 42, # Output only. The version of this creative.
1078 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
1079 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
1080 &quot;A String&quot;,
1081 ],
1082 &quot;openAuctionStatus&quot;: &quot;A String&quot;, # Output only. The top-level open auction status of this creative. If disapproved, an entry for &#x27;auctionType = OPEN_AUCTION&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
1083 &quot;accountId&quot;: &quot;A String&quot;, # The account that this creative belongs to. Can be used to filter the response of the creatives.list method.
1084 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
1085 &quot;A String&quot;,
1086 ],
1087 &quot;vendorIds&quot;: [ # All vendor IDs for the ads that may be shown from this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values.
1088 42,
1089 ],
1090 }
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001091
1092 x__xgafv: string, V1 error format.
1093 Allowed values
1094 1 - v1 error format
1095 2 - v2 error format
1096
1097Returns:
1098 An object of the form:
1099
1100 { # A creative and its classification data.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001101 &quot;attributes&quot;: [ # All attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
1102 &quot;A String&quot;,
1103 ],
1104 &quot;servingRestrictions&quot;: [ # Output only. The granular status of this ad in specific contexts. A context here relates to where something ultimately serves (for example, a physical location, a platform, an HTTPS vs HTTP request, or the type of auction).
1105 { # Output only. A representation of the status of an ad in a specific context. A context here relates to where something ultimately serves (for example, a user or publisher geo, a platform, an HTTPS vs HTTP request, or the type of auction).
1106 &quot;disapproval&quot;: { # Output only. The reason and details for a disapproval. # Disapproval bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -08001107 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001108 &quot;details&quot;: [ # Additional details about the reason for disapproval.
1109 &quot;A String&quot;,
1110 ],
1111 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001112 &quot;contexts&quot;: [ # The contexts for the restriction.
1113 { # The serving context for this restriction.
1114 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
1115 &quot;platforms&quot;: [ # The platforms this restriction applies to.
1116 &quot;A String&quot;,
1117 ],
1118 },
1119 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
1120 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
1121 &quot;A String&quot;,
1122 ],
1123 },
1124 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
1125 &quot;appTypes&quot;: [ # The app types this restriction applies to.
1126 &quot;A String&quot;,
1127 ],
1128 },
1129 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
1130 &quot;securities&quot;: [ # The security types in this context.
1131 &quot;A String&quot;,
1132 ],
1133 },
1134 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
1135 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
1136 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
1137 42,
1138 ],
1139 },
1140 },
1141 ],
1142 &quot;disapprovalReasons&quot;: [ # Any disapprovals bound to this restriction. Only present if status=DISAPPROVED. Can be used to filter the response of the creatives.list method. Deprecated; please use disapproval field instead.
1143 { # Output only. The reason and details for a disapproval.
1144 &quot;reason&quot;: &quot;A String&quot;, # The categorized reason for disapproval.
1145 &quot;details&quot;: [ # Additional details about the reason for disapproval.
1146 &quot;A String&quot;,
1147 ],
1148 },
1149 ],
1150 &quot;status&quot;: &quot;A String&quot;, # The status of the creative in this context (for example, it has been explicitly disapproved or is pending review).
1151 },
1152 ],
1153 &quot;dealsStatus&quot;: &quot;A String&quot;, # Output only. The top-level deals status of this creative. If disapproved, an entry for &#x27;auctionType=DIRECT_DEALS&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
1154 &quot;detectedDomains&quot;: [ # Output only. The detected domains for this creative.
1155 &quot;A String&quot;,
1156 ],
1157 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
1158 &quot;width&quot;: 42, # The width of the HTML snippet in pixels.
1159 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
1160 &quot;height&quot;: 42, # The height of the HTML snippet in pixels.
1161 },
1162 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
1163 &quot;creativeId&quot;: &quot;A String&quot;, # The buyer-defined creative ID of this creative. Can be used to filter the response of the creatives.list method.
1164 &quot;detectedLanguages&quot;: [ # Output only. The detected languages for this creative. The order is arbitrary. The codes are 2 or 5 characters and are documented at https://developers.google.com/adwords/api/docs/appendix/languagecodes.
1165 &quot;A String&quot;,
1166 ],
1167 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative.
1168 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page.
1169 &quot;native&quot;: { # Native content for a creative. # A native creative.
1170 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
1171 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
1172 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
1173 &quot;logo&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A smaller image, for the advertiser&#x27;s logo.
1174 &quot;height&quot;: 42, # Image height in pixels.
1175 &quot;width&quot;: 42, # Image width in pixels.
1176 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1177 },
1178 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
1179 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
1180 &quot;image&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # A large image.
1181 &quot;height&quot;: 42, # Image height in pixels.
1182 &quot;width&quot;: 42, # Image width in pixels.
1183 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1184 },
1185 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
1186 &quot;storeUrl&quot;: &quot;A String&quot;, # The URL to the app store to purchase/download the promoted app.
1187 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
1188 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
1189 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
1190 &quot;appIcon&quot;: { # An image resource. You may provide a larger image than was requested, so long as the aspect ratio is preserved. # The app icon, for app download ads.
1191 &quot;height&quot;: 42, # Image height in pixels.
1192 &quot;width&quot;: 42, # Image width in pixels.
1193 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1194 },
1195 },
1196 &quot;detectedSensitiveCategories&quot;: [ # Output only. Detected sensitive categories, if any. See the ad-sensitive-categories.txt file in the technical documentation for a list of IDs. You should use these IDs along with the excluded-sensitive-category field in the bid request to filter your bids.
1197 42,
1198 ],
1199 &quot;corrections&quot;: [ # Output only. Shows any corrections that were applied to this creative.
1200 { # Output only. Shows any corrections that were applied to this creative.
1201 &quot;contexts&quot;: [ # The contexts for the correction.
1202 { # The serving context for this restriction.
1203 &quot;platform&quot;: { # Output only. The type of platform the restriction applies to. # Matches impressions coming from a particular platform.
1204 &quot;platforms&quot;: [ # The platforms this restriction applies to.
1205 &quot;A String&quot;,
1206 ],
1207 },
1208 &quot;auctionType&quot;: { # Output only. The auction type the restriction applies to. # Matches impressions for a particular auction type.
1209 &quot;auctionTypes&quot;: [ # The auction types this restriction applies to.
1210 &quot;A String&quot;,
1211 ],
1212 },
1213 &quot;appType&quot;: { # Output only. The app type the restriction applies to for mobile device. # Matches impressions for a particular app type.
1214 &quot;appTypes&quot;: [ # The app types this restriction applies to.
1215 &quot;A String&quot;,
1216 ],
1217 },
1218 &quot;securityType&quot;: { # Output only. A security context. # Matches impressions for a particular security type.
1219 &quot;securities&quot;: [ # The security types in this context.
1220 &quot;A String&quot;,
1221 ],
1222 },
1223 &quot;all&quot;: &quot;A String&quot;, # Matches all contexts.
1224 &quot;location&quot;: { # Output only. The Geo criteria the restriction applies to. # Matches impressions coming from users *or* publishers in a specific location.
1225 &quot;geoCriteriaIds&quot;: [ # IDs representing the geo location for this context. Please refer to the [geo-table.csv](https://storage.googleapis.com/adx-rtb-dictionaries/geo-table.csv) file for different geo criteria IDs.
1226 42,
1227 ],
1228 },
1229 },
1230 ],
1231 &quot;type&quot;: &quot;A String&quot;, # The type of correction that was applied to the creative.
1232 &quot;details&quot;: [ # Additional details about what was corrected.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001233 &quot;A String&quot;,
1234 ],
1235 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001236 ],
1237 &quot;video&quot;: { # Video content for a creative. # A video creative.
1238 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
1239 &quot;videoVastXml&quot;: &quot;A String&quot;, # The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -08001240 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001241 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -08001242 &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001243 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001244 &quot;detectedAdvertiserIds&quot;: [ # Output only. Detected advertiser IDs, if any.
1245 &quot;A String&quot;,
1246 ],
1247 &quot;clickThroughUrls&quot;: [ # The set of destination URLs for the creative.
1248 &quot;A String&quot;,
1249 ],
1250 &quot;detectedProductCategories&quot;: [ # Output only. Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs.
1251 42,
1252 ],
1253 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # Output only. The detected ad technology providers.
1254 &quot;detectedProviderIds&quot;: [ # The detected ad technology provider IDs for this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/providers.csv for mapping of provider ID to provided name, a privacy policy URL, and a list of domains which can be attributed to the provider. If the creative contains provider IDs that are outside of those listed in the `BidRequest.adslot.consented_providers_settings.consented_providers` field on the (Google bid protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto] and the `BidRequest.user.ext.consented_providers_settings.consented_providers` field on the (OpenRTB protocol)[https://developers.google.com/authorized-buyers/rtb/downloads/openrtb-adx-proto], and a bid is submitted with that creative for an impression that will serve to an EEA user, the bid will be filtered before the auction.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001255 &quot;A String&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001256 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001257 &quot;hasUnidentifiedProvider&quot;: True or False, # Whether the creative contains an unidentified ad technology provider. If true for a given creative, any bid submitted with that creative for an impression that will serve to an EEA user will be filtered before the auction.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001258 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001259 &quot;version&quot;: 42, # Output only. The version of this creative.
1260 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
1261 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
1262 &quot;A String&quot;,
1263 ],
1264 &quot;openAuctionStatus&quot;: &quot;A String&quot;, # Output only. The top-level open auction status of this creative. If disapproved, an entry for &#x27;auctionType = OPEN_AUCTION&#x27; (or &#x27;ALL&#x27;) in serving_restrictions will also exist. Note that this may be nuanced with other contextual restrictions, in which case, it may be preferable to read from serving_restrictions directly. Can be used to filter the response of the creatives.list method.
1265 &quot;accountId&quot;: &quot;A String&quot;, # The account that this creative belongs to. Can be used to filter the response of the creatives.list method.
1266 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
1267 &quot;A String&quot;,
1268 ],
1269 &quot;vendorIds&quot;: [ # All vendor IDs for the ads that may be shown from this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values.
1270 42,
1271 ],
1272 }</pre>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001273</div>
1274
1275<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -07001276 <code class="details" id="watch">watch(accountId, creativeId, body=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001277 <pre>Watches a creative. Will result in push notifications being sent to the topic when the creative changes status.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001278
1279Args:
1280 accountId: string, The account of the creative to watch. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001281 creativeId: string, The creative ID to watch for status changes. Specify &quot;-&quot; to watch all creatives under the above account. If both creative-level and account-level notifications are sent, only a single notification will be sent to the creative-level notification topic. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -07001282 body: object, The request body.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001283 The object takes the form of:
1284
1285{ # A request for watching changes to creative Status.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001286 &quot;topic&quot;: &quot;A String&quot;, # The Pub/Sub topic to publish notifications to. This topic must already exist and must give permission to ad-exchange-buyside-reports@google.com to write to the topic. This should be the full resource name in &quot;projects/{project_id}/topics/{topic_id}&quot; format.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001287 }
1288
1289 x__xgafv: string, V1 error format.
1290 Allowed values
1291 1 - v1 error format
1292 2 - v2 error format
1293
1294Returns:
1295 An object of the form:
1296
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001297 { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001298 }</pre>
1299</div>
1300
1301</body></html>