blob: 3187bd6afdf5ce02239f6fb9fb2fd2d8da009220 [file] [log] [blame]
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001<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="realtimebidding_v1.html">Real-time Bidding API</a> . <a href="realtimebidding_v1.buyers.html">buyers</a> . <a href="realtimebidding_v1.buyers.creatives.html">creatives</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070081 <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Creates a creative.</p>
83<p class="toc_element">
84 <code><a href="#get">get(name, view=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Gets a creative.</p>
86<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070087 <code><a href="#list">list(parent, view=None, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070088<p class="firstline">Lists creatives.</p>
89<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
93 <code><a href="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
94<p class="firstline">Updates a creative.</p>
95<h3>Method Details</h3>
96<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070097 <code class="details" id="close">close()</code>
98 <pre>Close httplib2 connections.</pre>
99</div>
100
101<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700102 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code>
103 <pre>Creates a creative.
104
105Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700106 parent: string, Required. The name of the parent buyer that the new creative belongs to that must follow the pattern `buyers/{buyerAccountId}`, where `{buyerAccountId}` represents the account ID of the buyer who owns a creative. For a bidder accessing creatives on behalf of a child seat buyer, `{buyerAccountId}` should represent the account ID of the child seat buyer. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700107 body: object, The request body.
108 The object takes the form of:
109
110{ # A creative and its classification data.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700111 &quot;native&quot;: { # Native content for a creative. # A native creative.
112 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
113 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
114 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
115 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
116 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
117 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
118 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
119 &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.
120 &quot;height&quot;: 42, # Image height in pixels.
121 &quot;width&quot;: 42, # Image width in pixels.
122 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700123 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700124 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
125 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
126 &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.
127 &quot;height&quot;: 42, # Image height in pixels.
128 &quot;width&quot;: 42, # Image width in pixels.
129 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700130 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700131 &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.
132 &quot;height&quot;: 42, # Image height in pixels.
133 &quot;width&quot;: 42, # Image width in pixels.
134 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700135 },
136 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700137 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
138 &quot;A String&quot;,
139 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700140 &quot;declaredVendorIds&quot;: [ # IDs for the declared ad technology vendors that may be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method.
141 42,
142 ],
143 &quot;declaredRestrictedCategories&quot;: [ # All declared restricted categories for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
144 &quot;A String&quot;,
145 ],
146 &quot;version&quot;: 42, # Output only. The version of this creative. Version for a new creative is 1 and it increments during subsequent creative updates.
147 &quot;creativeId&quot;: &quot;A String&quot;, # Buyer-specific creative ID that references this creative in bid responses. This field is Ignored in update operations. Can be used to filter the response of the creatives.list method. The maximum length of the creative ID is 128 bytes.
148 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700149 &quot;A String&quot;,
150 ],
151 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
152 &quot;A String&quot;,
153 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700154 &quot;creativeServingDecision&quot;: { # Top level status and detected attributes of a creative. # Output only. Top level status and detected attributes of a creative (for example domain, language, advertiser, product category, etc.) that affect whether (status) and where (context) a creative will be allowed to serve.
155 &quot;detectedAttributes&quot;: [ # Publisher-excludable attributes that were detected for this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
156 &quot;A String&quot;,
157 ],
158 &quot;lastStatusUpdate&quot;: &quot;A String&quot;, # The last time the creative status was updated. Can be used to filter the response of the creatives.list method.
159 &quot;openAuctionServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
160 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
161 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
162 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
163 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
164 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
165 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
166 { # Evidence associated with a policy topic entry.
167 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
168 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
169 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
170 &quot;A String&quot;,
171 ],
172 },
173 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
174 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
175 { # The URL-level breakdown for the download size.
176 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
177 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
178 },
179 ],
180 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
181 },
182 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
183 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
184 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
185 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
186 },
187 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
188 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
189 },
190 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
191 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
192 { # The number of HTTP calls made to the given domain.
193 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
194 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
195 },
196 ],
197 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
198 },
199 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
200 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
201 &quot;A String&quot;,
202 ],
203 },
204 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
205 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
206 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
207 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
208 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
209 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
210 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
211 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
212 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
213 },
214 },
215 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700216 },
217 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700218 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700219 &quot;chinaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in China. When approved or disapproved, this status applies to both deals and open auction in China. When pending review, this creative is allowed to serve for deals but not for open auction.
220 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
221 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
222 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
223 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
224 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
225 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
226 { # Evidence associated with a policy topic entry.
227 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
228 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
229 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
230 &quot;A String&quot;,
231 ],
232 },
233 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
234 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
235 { # The URL-level breakdown for the download size.
236 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
237 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
238 },
239 ],
240 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
241 },
242 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
243 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
244 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
245 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
246 },
247 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
248 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
249 },
250 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
251 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
252 { # The number of HTTP calls made to the given domain.
253 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
254 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
255 },
256 ],
257 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
258 },
259 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
260 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
261 &quot;A String&quot;,
262 ],
263 },
264 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
265 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
266 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
267 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
268 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
269 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
270 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
271 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
272 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
273 },
274 },
275 ],
276 },
277 ],
278 },
279 &quot;detectedSensitiveCategories&quot;: [ # Detected sensitive categories, if any. Can be used to filter the response of the creatives.list method. 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.
280 42,
281 ],
282 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
283 &quot;A String&quot;,
284 ],
285 &quot;dealsServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding on PG and PD deals (outside of Russia and China).
286 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
287 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
288 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
289 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
290 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
291 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
292 { # Evidence associated with a policy topic entry.
293 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
294 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
295 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
296 &quot;A String&quot;,
297 ],
298 },
299 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
300 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
301 { # The URL-level breakdown for the download size.
302 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
303 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
304 },
305 ],
306 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
307 },
308 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
309 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
310 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
311 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
312 },
313 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
314 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
315 },
316 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
317 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
318 { # The number of HTTP calls made to the given domain.
319 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
320 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
321 },
322 ],
323 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
324 },
325 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
326 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
327 &quot;A String&quot;,
328 ],
329 },
330 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
331 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
332 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
333 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
334 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
335 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
336 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
337 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
338 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
339 },
340 },
341 ],
342 },
343 ],
344 },
345 &quot;detectedProductCategories&quot;: [ # Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs. Can be used to filter the response of the creatives.list method.
346 42,
347 ],
348 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # The detected ad technology providers.
349 &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.
350 &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.
351 &quot;A String&quot;,
352 ],
353 },
354 &quot;russiaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in Russia. When approved or disapproved, this status applies to both deals and open auction in Russia. When pending review, this creative is allowed to serve for deals but not for open auction.
355 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
356 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
357 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
358 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
359 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
360 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
361 { # Evidence associated with a policy topic entry.
362 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
363 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
364 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
365 &quot;A String&quot;,
366 ],
367 },
368 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
369 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
370 { # The URL-level breakdown for the download size.
371 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
372 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
373 },
374 ],
375 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
376 },
377 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
378 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
379 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
380 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
381 },
382 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
383 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
384 },
385 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
386 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
387 { # The number of HTTP calls made to the given domain.
388 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
389 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
390 },
391 ],
392 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
393 },
394 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
395 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
396 &quot;A String&quot;,
397 ],
398 },
399 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
400 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
401 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
402 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
403 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
404 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
405 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
406 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
407 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
408 },
409 },
410 ],
411 },
412 ],
413 },
414 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
415 &quot;A String&quot;,
416 ],
417 &quot;detectedVendorIds&quot;: [ # IDs of the ad technology vendors that were detected to be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method. If the `allowed_vendor_type` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) does not contain one of the vendor type IDs that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
418 42,
419 ],
420 &quot;detectedLanguages&quot;: [ # 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. Can be used to filter the response of the creatives.list method.
421 &quot;A String&quot;,
422 ],
423 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
424 { # Detected advertiser and brand information.
425 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
426 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
427 &quot;advertiserId&quot;: &quot;A String&quot;, # See https://storage.googleapis.com/adx-rtb-dictionaries/advertisers.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
428 &quot;brandId&quot;: &quot;A String&quot;, # Detected brand ID or zero if no brand has been detected. See https://storage.googleapis.com/adx-rtb-dictionaries/brands.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
429 },
430 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700431 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700432 &quot;video&quot;: { # Video content for a creative. # A video creative.
433 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
434 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
435 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
436 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
437 &quot;skipOffset&quot;: &quot;A String&quot;, # The minimum duration that the user has to watch before being able to skip this ad. If the field is not set, the ad is not skippable. If the field is set, the ad is skippable. Can be used to filter the response of the creatives.list method.
438 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
439 &quot;mediaFiles&quot;: [ # The list of all media files declared in the VAST. If there are multiple VASTs in a wrapper chain, this includes the media files from the deepest one in the chain.
440 { # Information about each media file in the VAST.
441 &quot;bitrate&quot;: &quot;A String&quot;, # Bitrate of the video file, in Kbps. Can be used to filter the response of the creatives.list method.
442 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of this media file. Can be used to filter the response of the creatives.list method.
443 },
444 ],
445 &quot;vastVersion&quot;: &quot;A String&quot;, # The maximum VAST version across all wrapped VAST documents. Can be used to filter the response of the creatives.list method.
446 },
447 &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.
448 },
449 &quot;declaredAttributes&quot;: [ # All declared attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto&quot;) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
450 &quot;A String&quot;,
451 ],
452 &quot;accountId&quot;: &quot;A String&quot;, # Output only. ID of the buyer account that this creative is owned by. Can be used to filter the response of the creatives.list method with equality and inequality check.
453 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
454 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
455 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative. Can be used to filter the response of the creatives.list method.
456 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
457 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
458 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
459 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
460 },
461 &quot;dealIds&quot;: [ # Output only. IDs of all of the deals with which this creative has been used in bidding. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700462 &quot;A String&quot;,
463 ],
464 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700465 &quot;creativeFormat&quot;: &quot;A String&quot;, # Output only. The format of this creative. Can be used to filter the response of the creatives.list method.
466 &quot;name&quot;: &quot;A String&quot;, # Name of the creative. Follows the pattern `buyers/{buyer}/creatives/{creative}`, where `{buyer}` represents the account ID of the buyer who owns the creative, and `{creative}` is the buyer-specific creative ID that references this creative in the bid response.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700467}
468
469 x__xgafv: string, V1 error format.
470 Allowed values
471 1 - v1 error format
472 2 - v2 error format
473
474Returns:
475 An object of the form:
476
477 { # A creative and its classification data.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700478 &quot;native&quot;: { # Native content for a creative. # A native creative.
479 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
480 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
481 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
482 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
483 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
484 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
485 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
486 &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.
487 &quot;height&quot;: 42, # Image height in pixels.
488 &quot;width&quot;: 42, # Image width in pixels.
489 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700490 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700491 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
492 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
493 &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.
494 &quot;height&quot;: 42, # Image height in pixels.
495 &quot;width&quot;: 42, # Image width in pixels.
496 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700497 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700498 &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.
499 &quot;height&quot;: 42, # Image height in pixels.
500 &quot;width&quot;: 42, # Image width in pixels.
501 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700502 },
503 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700504 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
505 &quot;A String&quot;,
506 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700507 &quot;declaredVendorIds&quot;: [ # IDs for the declared ad technology vendors that may be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method.
508 42,
509 ],
510 &quot;declaredRestrictedCategories&quot;: [ # All declared restricted categories for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
511 &quot;A String&quot;,
512 ],
513 &quot;version&quot;: 42, # Output only. The version of this creative. Version for a new creative is 1 and it increments during subsequent creative updates.
514 &quot;creativeId&quot;: &quot;A String&quot;, # Buyer-specific creative ID that references this creative in bid responses. This field is Ignored in update operations. Can be used to filter the response of the creatives.list method. The maximum length of the creative ID is 128 bytes.
515 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700516 &quot;A String&quot;,
517 ],
518 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
519 &quot;A String&quot;,
520 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700521 &quot;creativeServingDecision&quot;: { # Top level status and detected attributes of a creative. # Output only. Top level status and detected attributes of a creative (for example domain, language, advertiser, product category, etc.) that affect whether (status) and where (context) a creative will be allowed to serve.
522 &quot;detectedAttributes&quot;: [ # Publisher-excludable attributes that were detected for this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
523 &quot;A String&quot;,
524 ],
525 &quot;lastStatusUpdate&quot;: &quot;A String&quot;, # The last time the creative status was updated. Can be used to filter the response of the creatives.list method.
526 &quot;openAuctionServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
527 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
528 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
529 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
530 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
531 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
532 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
533 { # Evidence associated with a policy topic entry.
534 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
535 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
536 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
537 &quot;A String&quot;,
538 ],
539 },
540 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
541 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
542 { # The URL-level breakdown for the download size.
543 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
544 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
545 },
546 ],
547 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
548 },
549 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
550 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
551 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
552 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
553 },
554 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
555 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
556 },
557 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
558 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
559 { # The number of HTTP calls made to the given domain.
560 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
561 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
562 },
563 ],
564 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
565 },
566 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
567 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
568 &quot;A String&quot;,
569 ],
570 },
571 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
572 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
573 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
574 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
575 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
576 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
577 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
578 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
579 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
580 },
581 },
582 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700583 },
584 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700585 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700586 &quot;chinaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in China. When approved or disapproved, this status applies to both deals and open auction in China. When pending review, this creative is allowed to serve for deals but not for open auction.
587 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
588 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
589 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
590 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
591 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
592 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
593 { # Evidence associated with a policy topic entry.
594 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
595 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
596 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
597 &quot;A String&quot;,
598 ],
599 },
600 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
601 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
602 { # The URL-level breakdown for the download size.
603 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
604 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
605 },
606 ],
607 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
608 },
609 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
610 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
611 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
612 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
613 },
614 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
615 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
616 },
617 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
618 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
619 { # The number of HTTP calls made to the given domain.
620 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
621 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
622 },
623 ],
624 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
625 },
626 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
627 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
628 &quot;A String&quot;,
629 ],
630 },
631 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
632 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
633 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
634 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
635 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
636 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
637 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
638 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
639 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
640 },
641 },
642 ],
643 },
644 ],
645 },
646 &quot;detectedSensitiveCategories&quot;: [ # Detected sensitive categories, if any. Can be used to filter the response of the creatives.list method. 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.
647 42,
648 ],
649 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
650 &quot;A String&quot;,
651 ],
652 &quot;dealsServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding on PG and PD deals (outside of Russia and China).
653 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
654 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
655 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
656 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
657 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
658 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
659 { # Evidence associated with a policy topic entry.
660 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
661 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
662 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
663 &quot;A String&quot;,
664 ],
665 },
666 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
667 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
668 { # The URL-level breakdown for the download size.
669 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
670 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
671 },
672 ],
673 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
674 },
675 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
676 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
677 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
678 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
679 },
680 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
681 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
682 },
683 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
684 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
685 { # The number of HTTP calls made to the given domain.
686 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
687 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
688 },
689 ],
690 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
691 },
692 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
693 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
694 &quot;A String&quot;,
695 ],
696 },
697 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
698 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
699 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
700 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
701 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
702 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
703 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
704 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
705 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
706 },
707 },
708 ],
709 },
710 ],
711 },
712 &quot;detectedProductCategories&quot;: [ # Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs. Can be used to filter the response of the creatives.list method.
713 42,
714 ],
715 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # The detected ad technology providers.
716 &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.
717 &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.
718 &quot;A String&quot;,
719 ],
720 },
721 &quot;russiaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in Russia. When approved or disapproved, this status applies to both deals and open auction in Russia. When pending review, this creative is allowed to serve for deals but not for open auction.
722 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
723 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
724 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
725 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
726 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
727 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
728 { # Evidence associated with a policy topic entry.
729 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
730 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
731 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
732 &quot;A String&quot;,
733 ],
734 },
735 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
736 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
737 { # The URL-level breakdown for the download size.
738 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
739 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
740 },
741 ],
742 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
743 },
744 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
745 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
746 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
747 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
748 },
749 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
750 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
751 },
752 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
753 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
754 { # The number of HTTP calls made to the given domain.
755 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
756 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
757 },
758 ],
759 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
760 },
761 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
762 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
763 &quot;A String&quot;,
764 ],
765 },
766 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
767 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
768 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
769 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
770 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
771 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
772 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
773 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
774 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
775 },
776 },
777 ],
778 },
779 ],
780 },
781 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
782 &quot;A String&quot;,
783 ],
784 &quot;detectedVendorIds&quot;: [ # IDs of the ad technology vendors that were detected to be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method. If the `allowed_vendor_type` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) does not contain one of the vendor type IDs that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
785 42,
786 ],
787 &quot;detectedLanguages&quot;: [ # 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. Can be used to filter the response of the creatives.list method.
788 &quot;A String&quot;,
789 ],
790 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
791 { # Detected advertiser and brand information.
792 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
793 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
794 &quot;advertiserId&quot;: &quot;A String&quot;, # See https://storage.googleapis.com/adx-rtb-dictionaries/advertisers.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
795 &quot;brandId&quot;: &quot;A String&quot;, # Detected brand ID or zero if no brand has been detected. See https://storage.googleapis.com/adx-rtb-dictionaries/brands.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
796 },
797 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700798 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700799 &quot;video&quot;: { # Video content for a creative. # A video creative.
800 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
801 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
802 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
803 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
804 &quot;skipOffset&quot;: &quot;A String&quot;, # The minimum duration that the user has to watch before being able to skip this ad. If the field is not set, the ad is not skippable. If the field is set, the ad is skippable. Can be used to filter the response of the creatives.list method.
805 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
806 &quot;mediaFiles&quot;: [ # The list of all media files declared in the VAST. If there are multiple VASTs in a wrapper chain, this includes the media files from the deepest one in the chain.
807 { # Information about each media file in the VAST.
808 &quot;bitrate&quot;: &quot;A String&quot;, # Bitrate of the video file, in Kbps. Can be used to filter the response of the creatives.list method.
809 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of this media file. Can be used to filter the response of the creatives.list method.
810 },
811 ],
812 &quot;vastVersion&quot;: &quot;A String&quot;, # The maximum VAST version across all wrapped VAST documents. Can be used to filter the response of the creatives.list method.
813 },
814 &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.
815 },
816 &quot;declaredAttributes&quot;: [ # All declared attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto&quot;) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
817 &quot;A String&quot;,
818 ],
819 &quot;accountId&quot;: &quot;A String&quot;, # Output only. ID of the buyer account that this creative is owned by. Can be used to filter the response of the creatives.list method with equality and inequality check.
820 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
821 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
822 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative. Can be used to filter the response of the creatives.list method.
823 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
824 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
825 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
826 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
827 },
828 &quot;dealIds&quot;: [ # Output only. IDs of all of the deals with which this creative has been used in bidding. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700829 &quot;A String&quot;,
830 ],
831 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700832 &quot;creativeFormat&quot;: &quot;A String&quot;, # Output only. The format of this creative. Can be used to filter the response of the creatives.list method.
833 &quot;name&quot;: &quot;A String&quot;, # Name of the creative. Follows the pattern `buyers/{buyer}/creatives/{creative}`, where `{buyer}` represents the account ID of the buyer who owns the creative, and `{creative}` is the buyer-specific creative ID that references this creative in the bid response.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700834 }</pre>
835</div>
836
837<div class="method">
838 <code class="details" id="get">get(name, view=None, x__xgafv=None)</code>
839 <pre>Gets a creative.
840
841Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700842 name: string, Required. Name of the creative to retrieve. See creative.name. (required)
843 view: string, Controls the amount of information included in the response. By default only creativeServingDecision is included. To retrieve the entire creative resource (including the declared fields and the creative content) specify the view as &quot;FULL&quot;.
844 Allowed values
845 CREATIVE_VIEW_UNSPECIFIED - Not specified, equivalent to SERVING_DECISION_ONLY.
846 SERVING_DECISION_ONLY - Only creativeServingDecision is included in the response.
847 FULL - The entire creative resource (including the declared fields and the creative content) is included in the response.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700848 x__xgafv: string, V1 error format.
849 Allowed values
850 1 - v1 error format
851 2 - v2 error format
852
853Returns:
854 An object of the form:
855
856 { # A creative and its classification data.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700857 &quot;native&quot;: { # Native content for a creative. # A native creative.
858 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
859 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
860 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
861 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
862 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
863 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
864 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
865 &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.
866 &quot;height&quot;: 42, # Image height in pixels.
867 &quot;width&quot;: 42, # Image width in pixels.
868 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700869 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700870 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
871 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
872 &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.
873 &quot;height&quot;: 42, # Image height in pixels.
874 &quot;width&quot;: 42, # Image width in pixels.
875 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700876 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700877 &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.
878 &quot;height&quot;: 42, # Image height in pixels.
879 &quot;width&quot;: 42, # Image width in pixels.
880 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700881 },
882 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700883 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
884 &quot;A String&quot;,
885 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700886 &quot;declaredVendorIds&quot;: [ # IDs for the declared ad technology vendors that may be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method.
887 42,
888 ],
889 &quot;declaredRestrictedCategories&quot;: [ # All declared restricted categories for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
890 &quot;A String&quot;,
891 ],
892 &quot;version&quot;: 42, # Output only. The version of this creative. Version for a new creative is 1 and it increments during subsequent creative updates.
893 &quot;creativeId&quot;: &quot;A String&quot;, # Buyer-specific creative ID that references this creative in bid responses. This field is Ignored in update operations. Can be used to filter the response of the creatives.list method. The maximum length of the creative ID is 128 bytes.
894 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700895 &quot;A String&quot;,
896 ],
897 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
898 &quot;A String&quot;,
899 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700900 &quot;creativeServingDecision&quot;: { # Top level status and detected attributes of a creative. # Output only. Top level status and detected attributes of a creative (for example domain, language, advertiser, product category, etc.) that affect whether (status) and where (context) a creative will be allowed to serve.
901 &quot;detectedAttributes&quot;: [ # Publisher-excludable attributes that were detected for this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
902 &quot;A String&quot;,
903 ],
904 &quot;lastStatusUpdate&quot;: &quot;A String&quot;, # The last time the creative status was updated. Can be used to filter the response of the creatives.list method.
905 &quot;openAuctionServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
906 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
907 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
908 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
909 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
910 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
911 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
912 { # Evidence associated with a policy topic entry.
913 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
914 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
915 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
916 &quot;A String&quot;,
917 ],
918 },
919 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
920 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
921 { # The URL-level breakdown for the download size.
922 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
923 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
924 },
925 ],
926 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
927 },
928 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
929 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
930 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
931 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
932 },
933 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
934 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
935 },
936 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
937 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
938 { # The number of HTTP calls made to the given domain.
939 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
940 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
941 },
942 ],
943 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
944 },
945 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
946 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
947 &quot;A String&quot;,
948 ],
949 },
950 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
951 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
952 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
953 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
954 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
955 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
956 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
957 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
958 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
959 },
960 },
961 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700962 },
963 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700964 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700965 &quot;chinaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in China. When approved or disapproved, this status applies to both deals and open auction in China. When pending review, this creative is allowed to serve for deals but not for open auction.
966 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
967 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
968 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
969 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
970 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
971 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
972 { # Evidence associated with a policy topic entry.
973 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
974 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
975 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
976 &quot;A String&quot;,
977 ],
978 },
979 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
980 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
981 { # The URL-level breakdown for the download size.
982 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
983 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
984 },
985 ],
986 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
987 },
988 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
989 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
990 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
991 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
992 },
993 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
994 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
995 },
996 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
997 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
998 { # The number of HTTP calls made to the given domain.
999 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1000 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1001 },
1002 ],
1003 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1004 },
1005 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1006 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1007 &quot;A String&quot;,
1008 ],
1009 },
1010 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1011 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1012 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1013 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1014 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1015 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1016 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1017 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1018 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1019 },
1020 },
1021 ],
1022 },
1023 ],
1024 },
1025 &quot;detectedSensitiveCategories&quot;: [ # Detected sensitive categories, if any. Can be used to filter the response of the creatives.list method. 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.
1026 42,
1027 ],
1028 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
1029 &quot;A String&quot;,
1030 ],
1031 &quot;dealsServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding on PG and PD deals (outside of Russia and China).
1032 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1033 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1034 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1035 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1036 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1037 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1038 { # Evidence associated with a policy topic entry.
1039 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1040 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1041 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1042 &quot;A String&quot;,
1043 ],
1044 },
1045 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1046 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1047 { # The URL-level breakdown for the download size.
1048 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1049 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1050 },
1051 ],
1052 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1053 },
1054 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1055 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1056 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1057 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1058 },
1059 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1060 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1061 },
1062 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1063 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1064 { # The number of HTTP calls made to the given domain.
1065 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1066 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1067 },
1068 ],
1069 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1070 },
1071 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1072 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1073 &quot;A String&quot;,
1074 ],
1075 },
1076 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1077 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1078 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1079 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1080 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1081 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1082 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1083 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1084 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1085 },
1086 },
1087 ],
1088 },
1089 ],
1090 },
1091 &quot;detectedProductCategories&quot;: [ # Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs. Can be used to filter the response of the creatives.list method.
1092 42,
1093 ],
1094 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # The detected ad technology providers.
1095 &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.
1096 &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.
1097 &quot;A String&quot;,
1098 ],
1099 },
1100 &quot;russiaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in Russia. When approved or disapproved, this status applies to both deals and open auction in Russia. When pending review, this creative is allowed to serve for deals but not for open auction.
1101 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1102 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1103 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1104 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1105 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1106 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1107 { # Evidence associated with a policy topic entry.
1108 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1109 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1110 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1111 &quot;A String&quot;,
1112 ],
1113 },
1114 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1115 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1116 { # The URL-level breakdown for the download size.
1117 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1118 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1119 },
1120 ],
1121 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1122 },
1123 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1124 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1125 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1126 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1127 },
1128 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1129 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1130 },
1131 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1132 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1133 { # The number of HTTP calls made to the given domain.
1134 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1135 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1136 },
1137 ],
1138 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1139 },
1140 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1141 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1142 &quot;A String&quot;,
1143 ],
1144 },
1145 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1146 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1147 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1148 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1149 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1150 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1151 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1152 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1153 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1154 },
1155 },
1156 ],
1157 },
1158 ],
1159 },
1160 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
1161 &quot;A String&quot;,
1162 ],
1163 &quot;detectedVendorIds&quot;: [ # IDs of the ad technology vendors that were detected to be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method. If the `allowed_vendor_type` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) does not contain one of the vendor type IDs that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
1164 42,
1165 ],
1166 &quot;detectedLanguages&quot;: [ # 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. Can be used to filter the response of the creatives.list method.
1167 &quot;A String&quot;,
1168 ],
1169 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
1170 { # Detected advertiser and brand information.
1171 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
1172 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
1173 &quot;advertiserId&quot;: &quot;A String&quot;, # See https://storage.googleapis.com/adx-rtb-dictionaries/advertisers.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
1174 &quot;brandId&quot;: &quot;A String&quot;, # Detected brand ID or zero if no brand has been detected. See https://storage.googleapis.com/adx-rtb-dictionaries/brands.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
1175 },
1176 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001177 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001178 &quot;video&quot;: { # Video content for a creative. # A video creative.
1179 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
1180 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
1181 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
1182 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
1183 &quot;skipOffset&quot;: &quot;A String&quot;, # The minimum duration that the user has to watch before being able to skip this ad. If the field is not set, the ad is not skippable. If the field is set, the ad is skippable. Can be used to filter the response of the creatives.list method.
1184 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
1185 &quot;mediaFiles&quot;: [ # The list of all media files declared in the VAST. If there are multiple VASTs in a wrapper chain, this includes the media files from the deepest one in the chain.
1186 { # Information about each media file in the VAST.
1187 &quot;bitrate&quot;: &quot;A String&quot;, # Bitrate of the video file, in Kbps. Can be used to filter the response of the creatives.list method.
1188 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of this media file. Can be used to filter the response of the creatives.list method.
1189 },
1190 ],
1191 &quot;vastVersion&quot;: &quot;A String&quot;, # The maximum VAST version across all wrapped VAST documents. Can be used to filter the response of the creatives.list method.
1192 },
1193 &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.
1194 },
1195 &quot;declaredAttributes&quot;: [ # All declared attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto&quot;) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
1196 &quot;A String&quot;,
1197 ],
1198 &quot;accountId&quot;: &quot;A String&quot;, # Output only. ID of the buyer account that this creative is owned by. Can be used to filter the response of the creatives.list method with equality and inequality check.
1199 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
1200 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
1201 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative. Can be used to filter the response of the creatives.list method.
1202 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
1203 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
1204 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
1205 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
1206 },
1207 &quot;dealIds&quot;: [ # Output only. IDs of all of the deals with which this creative has been used in bidding. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001208 &quot;A String&quot;,
1209 ],
1210 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001211 &quot;creativeFormat&quot;: &quot;A String&quot;, # Output only. The format of this creative. Can be used to filter the response of the creatives.list method.
1212 &quot;name&quot;: &quot;A String&quot;, # Name of the creative. Follows the pattern `buyers/{buyer}/creatives/{creative}`, where `{buyer}` represents the account ID of the buyer who owns the creative, and `{creative}` is the buyer-specific creative ID that references this creative in the bid response.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001213 }</pre>
1214</div>
1215
1216<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001217 <code class="details" id="list">list(parent, view=None, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001218 <pre>Lists creatives.
1219
1220Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001221 parent: string, Required. Name of the parent buyer that owns the creatives. The pattern for this resource is either `buyers/{buyerAccountId}` or `bidders/{bidderAccountId}`. For `buyers/{buyerAccountId}`, the `buyerAccountId` can be one of the following: 1. The ID of the buyer that is accessing their own creatives. 2. The ID of the child seat buyer under a bidder account. So for listing creatives pertaining to the child seat buyer (`456`) under bidder account (`123`), you would use the pattern: `buyers/456`. 3. The ID of the bidder itself. So for listing creatives pertaining to bidder (`123`), you would use `buyers/123`. If you want to access all creatives pertaining to both the bidder and all of its child seat accounts, you would use `bidders/{bidderAccountId}`, e.g., for all creatives pertaining to bidder (`123`), use `bidders/123`. (required)
1222 view: string, Controls the amount of information included in the response. By default only creativeServingDecision is included. To retrieve the entire creative resource (including the declared fields and the creative content) specify the view as &quot;FULL&quot;.
1223 Allowed values
1224 CREATIVE_VIEW_UNSPECIFIED - Not specified, equivalent to SERVING_DECISION_ONLY.
1225 SERVING_DECISION_ONLY - Only creativeServingDecision is included in the response.
1226 FULL - The entire creative resource (including the declared fields and the creative content) is included in the response.
1227 filter: string, Query string to filter creatives. If no filter is specified, all active creatives will be returned. Example: &#x27;accountId=12345 AND (dealsStatus:DISAPPROVED AND disapprovalReason:UNACCEPTABLE_CONTENT) OR declaredAttributes:IS_COOKIE_TARGETED&#x27;
1228 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.
1229 pageToken: string, A token identifying a page of results the server should return. Typically, this is the value of ListCreativesResponse.nextPageToken returned from the previous call to the &#x27;ListCreatives&#x27; method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001230 x__xgafv: string, V1 error format.
1231 Allowed values
1232 1 - v1 error format
1233 2 - v2 error format
1234
1235Returns:
1236 An object of the form:
1237
1238 { # A response for listing creatives.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001239 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve the next page of results. Pass this value in the ListCreativesRequest.pageToken field in the subsequent call to the `ListCreatives` method to retrieve the next page of results.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001240 &quot;creatives&quot;: [ # The list of creatives.
1241 { # A creative and its classification data.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001242 &quot;native&quot;: { # Native content for a creative. # A native creative.
1243 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
1244 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
1245 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
1246 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
1247 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
1248 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
1249 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
1250 &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.
1251 &quot;height&quot;: 42, # Image height in pixels.
1252 &quot;width&quot;: 42, # Image width in pixels.
1253 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001254 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001255 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
1256 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
1257 &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.
1258 &quot;height&quot;: 42, # Image height in pixels.
1259 &quot;width&quot;: 42, # Image width in pixels.
1260 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001261 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001262 &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.
1263 &quot;height&quot;: 42, # Image height in pixels.
1264 &quot;width&quot;: 42, # Image width in pixels.
1265 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001266 },
1267 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001268 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
1269 &quot;A String&quot;,
1270 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001271 &quot;declaredVendorIds&quot;: [ # IDs for the declared ad technology vendors that may be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method.
1272 42,
1273 ],
1274 &quot;declaredRestrictedCategories&quot;: [ # All declared restricted categories for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
1275 &quot;A String&quot;,
1276 ],
1277 &quot;version&quot;: 42, # Output only. The version of this creative. Version for a new creative is 1 and it increments during subsequent creative updates.
1278 &quot;creativeId&quot;: &quot;A String&quot;, # Buyer-specific creative ID that references this creative in bid responses. This field is Ignored in update operations. Can be used to filter the response of the creatives.list method. The maximum length of the creative ID is 128 bytes.
1279 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001280 &quot;A String&quot;,
1281 ],
1282 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
1283 &quot;A String&quot;,
1284 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001285 &quot;creativeServingDecision&quot;: { # Top level status and detected attributes of a creative. # Output only. Top level status and detected attributes of a creative (for example domain, language, advertiser, product category, etc.) that affect whether (status) and where (context) a creative will be allowed to serve.
1286 &quot;detectedAttributes&quot;: [ # Publisher-excludable attributes that were detected for this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
1287 &quot;A String&quot;,
1288 ],
1289 &quot;lastStatusUpdate&quot;: &quot;A String&quot;, # The last time the creative status was updated. Can be used to filter the response of the creatives.list method.
1290 &quot;openAuctionServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
1291 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1292 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1293 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1294 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1295 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1296 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1297 { # Evidence associated with a policy topic entry.
1298 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1299 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1300 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1301 &quot;A String&quot;,
1302 ],
1303 },
1304 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1305 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1306 { # The URL-level breakdown for the download size.
1307 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1308 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1309 },
1310 ],
1311 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1312 },
1313 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1314 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1315 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1316 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1317 },
1318 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1319 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1320 },
1321 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1322 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1323 { # The number of HTTP calls made to the given domain.
1324 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1325 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1326 },
1327 ],
1328 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1329 },
1330 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1331 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1332 &quot;A String&quot;,
1333 ],
1334 },
1335 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1336 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1337 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1338 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1339 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1340 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1341 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1342 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1343 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1344 },
1345 },
1346 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001347 },
1348 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001349 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001350 &quot;chinaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in China. When approved or disapproved, this status applies to both deals and open auction in China. When pending review, this creative is allowed to serve for deals but not for open auction.
1351 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1352 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1353 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1354 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1355 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1356 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1357 { # Evidence associated with a policy topic entry.
1358 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1359 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1360 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1361 &quot;A String&quot;,
1362 ],
1363 },
1364 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1365 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1366 { # The URL-level breakdown for the download size.
1367 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1368 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1369 },
1370 ],
1371 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1372 },
1373 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1374 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1375 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1376 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1377 },
1378 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1379 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1380 },
1381 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1382 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1383 { # The number of HTTP calls made to the given domain.
1384 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1385 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1386 },
1387 ],
1388 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1389 },
1390 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1391 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1392 &quot;A String&quot;,
1393 ],
1394 },
1395 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1396 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1397 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1398 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1399 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1400 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1401 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1402 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1403 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1404 },
1405 },
1406 ],
1407 },
1408 ],
1409 },
1410 &quot;detectedSensitiveCategories&quot;: [ # Detected sensitive categories, if any. Can be used to filter the response of the creatives.list method. 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.
1411 42,
1412 ],
1413 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
1414 &quot;A String&quot;,
1415 ],
1416 &quot;dealsServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding on PG and PD deals (outside of Russia and China).
1417 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1418 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1419 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1420 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1421 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1422 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1423 { # Evidence associated with a policy topic entry.
1424 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1425 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1426 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1427 &quot;A String&quot;,
1428 ],
1429 },
1430 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1431 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1432 { # The URL-level breakdown for the download size.
1433 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1434 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1435 },
1436 ],
1437 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1438 },
1439 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1440 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1441 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1442 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1443 },
1444 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1445 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1446 },
1447 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1448 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1449 { # The number of HTTP calls made to the given domain.
1450 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1451 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1452 },
1453 ],
1454 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1455 },
1456 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1457 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1458 &quot;A String&quot;,
1459 ],
1460 },
1461 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1462 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1463 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1464 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1465 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1466 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1467 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1468 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1469 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1470 },
1471 },
1472 ],
1473 },
1474 ],
1475 },
1476 &quot;detectedProductCategories&quot;: [ # Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs. Can be used to filter the response of the creatives.list method.
1477 42,
1478 ],
1479 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # The detected ad technology providers.
1480 &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.
1481 &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.
1482 &quot;A String&quot;,
1483 ],
1484 },
1485 &quot;russiaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in Russia. When approved or disapproved, this status applies to both deals and open auction in Russia. When pending review, this creative is allowed to serve for deals but not for open auction.
1486 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1487 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1488 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1489 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1490 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1491 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1492 { # Evidence associated with a policy topic entry.
1493 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1494 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1495 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1496 &quot;A String&quot;,
1497 ],
1498 },
1499 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1500 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1501 { # The URL-level breakdown for the download size.
1502 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1503 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1504 },
1505 ],
1506 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1507 },
1508 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1509 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1510 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1511 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1512 },
1513 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1514 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1515 },
1516 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1517 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1518 { # The number of HTTP calls made to the given domain.
1519 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1520 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1521 },
1522 ],
1523 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1524 },
1525 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1526 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1527 &quot;A String&quot;,
1528 ],
1529 },
1530 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1531 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1532 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1533 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1534 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1535 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1536 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1537 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1538 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1539 },
1540 },
1541 ],
1542 },
1543 ],
1544 },
1545 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
1546 &quot;A String&quot;,
1547 ],
1548 &quot;detectedVendorIds&quot;: [ # IDs of the ad technology vendors that were detected to be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method. If the `allowed_vendor_type` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) does not contain one of the vendor type IDs that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
1549 42,
1550 ],
1551 &quot;detectedLanguages&quot;: [ # 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. Can be used to filter the response of the creatives.list method.
1552 &quot;A String&quot;,
1553 ],
1554 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
1555 { # Detected advertiser and brand information.
1556 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
1557 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
1558 &quot;advertiserId&quot;: &quot;A String&quot;, # See https://storage.googleapis.com/adx-rtb-dictionaries/advertisers.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
1559 &quot;brandId&quot;: &quot;A String&quot;, # Detected brand ID or zero if no brand has been detected. See https://storage.googleapis.com/adx-rtb-dictionaries/brands.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
1560 },
1561 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001562 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001563 &quot;video&quot;: { # Video content for a creative. # A video creative.
1564 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
1565 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
1566 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
1567 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
1568 &quot;skipOffset&quot;: &quot;A String&quot;, # The minimum duration that the user has to watch before being able to skip this ad. If the field is not set, the ad is not skippable. If the field is set, the ad is skippable. Can be used to filter the response of the creatives.list method.
1569 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
1570 &quot;mediaFiles&quot;: [ # The list of all media files declared in the VAST. If there are multiple VASTs in a wrapper chain, this includes the media files from the deepest one in the chain.
1571 { # Information about each media file in the VAST.
1572 &quot;bitrate&quot;: &quot;A String&quot;, # Bitrate of the video file, in Kbps. Can be used to filter the response of the creatives.list method.
1573 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of this media file. Can be used to filter the response of the creatives.list method.
1574 },
1575 ],
1576 &quot;vastVersion&quot;: &quot;A String&quot;, # The maximum VAST version across all wrapped VAST documents. Can be used to filter the response of the creatives.list method.
1577 },
1578 &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.
1579 },
1580 &quot;declaredAttributes&quot;: [ # All declared attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto&quot;) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
1581 &quot;A String&quot;,
1582 ],
1583 &quot;accountId&quot;: &quot;A String&quot;, # Output only. ID of the buyer account that this creative is owned by. Can be used to filter the response of the creatives.list method with equality and inequality check.
1584 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
1585 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
1586 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative. Can be used to filter the response of the creatives.list method.
1587 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
1588 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
1589 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
1590 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
1591 },
1592 &quot;dealIds&quot;: [ # Output only. IDs of all of the deals with which this creative has been used in bidding. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001593 &quot;A String&quot;,
1594 ],
1595 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001596 &quot;creativeFormat&quot;: &quot;A String&quot;, # Output only. The format of this creative. Can be used to filter the response of the creatives.list method.
1597 &quot;name&quot;: &quot;A String&quot;, # Name of the creative. Follows the pattern `buyers/{buyer}/creatives/{creative}`, where `{buyer}` represents the account ID of the buyer who owns the creative, and `{creative}` is the buyer-specific creative ID that references this creative in the bid response.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001598 },
1599 ],
1600 }</pre>
1601</div>
1602
1603<div class="method">
1604 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
1605 <pre>Retrieves the next page of results.
1606
1607Args:
1608 previous_request: The request for the previous page. (required)
1609 previous_response: The response from the request for the previous page. (required)
1610
1611Returns:
1612 A request object that you can call &#x27;execute()&#x27; on to request the next
1613 page. Returns None if there are no more items in the collection.
1614 </pre>
1615</div>
1616
1617<div class="method">
1618 <code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code>
1619 <pre>Updates a creative.
1620
1621Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001622 name: string, Name of the creative. Follows the pattern `buyers/{buyer}/creatives/{creative}`, where `{buyer}` represents the account ID of the buyer who owns the creative, and `{creative}` is the buyer-specific creative ID that references this creative in the bid response. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001623 body: object, The request body.
1624 The object takes the form of:
1625
1626{ # A creative and its classification data.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001627 &quot;native&quot;: { # Native content for a creative. # A native creative.
1628 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
1629 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
1630 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
1631 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
1632 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
1633 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
1634 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
1635 &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.
1636 &quot;height&quot;: 42, # Image height in pixels.
1637 &quot;width&quot;: 42, # Image width in pixels.
1638 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001639 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001640 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
1641 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
1642 &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.
1643 &quot;height&quot;: 42, # Image height in pixels.
1644 &quot;width&quot;: 42, # Image width in pixels.
1645 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001646 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001647 &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.
1648 &quot;height&quot;: 42, # Image height in pixels.
1649 &quot;width&quot;: 42, # Image width in pixels.
1650 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001651 },
1652 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001653 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
1654 &quot;A String&quot;,
1655 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001656 &quot;declaredVendorIds&quot;: [ # IDs for the declared ad technology vendors that may be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method.
1657 42,
1658 ],
1659 &quot;declaredRestrictedCategories&quot;: [ # All declared restricted categories for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
1660 &quot;A String&quot;,
1661 ],
1662 &quot;version&quot;: 42, # Output only. The version of this creative. Version for a new creative is 1 and it increments during subsequent creative updates.
1663 &quot;creativeId&quot;: &quot;A String&quot;, # Buyer-specific creative ID that references this creative in bid responses. This field is Ignored in update operations. Can be used to filter the response of the creatives.list method. The maximum length of the creative ID is 128 bytes.
1664 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001665 &quot;A String&quot;,
1666 ],
1667 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
1668 &quot;A String&quot;,
1669 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001670 &quot;creativeServingDecision&quot;: { # Top level status and detected attributes of a creative. # Output only. Top level status and detected attributes of a creative (for example domain, language, advertiser, product category, etc.) that affect whether (status) and where (context) a creative will be allowed to serve.
1671 &quot;detectedAttributes&quot;: [ # Publisher-excludable attributes that were detected for this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
1672 &quot;A String&quot;,
1673 ],
1674 &quot;lastStatusUpdate&quot;: &quot;A String&quot;, # The last time the creative status was updated. Can be used to filter the response of the creatives.list method.
1675 &quot;openAuctionServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
1676 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1677 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1678 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1679 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1680 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1681 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1682 { # Evidence associated with a policy topic entry.
1683 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1684 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1685 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1686 &quot;A String&quot;,
1687 ],
1688 },
1689 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1690 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1691 { # The URL-level breakdown for the download size.
1692 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1693 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1694 },
1695 ],
1696 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1697 },
1698 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1699 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1700 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1701 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1702 },
1703 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1704 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1705 },
1706 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1707 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1708 { # The number of HTTP calls made to the given domain.
1709 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1710 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1711 },
1712 ],
1713 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1714 },
1715 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1716 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1717 &quot;A String&quot;,
1718 ],
1719 },
1720 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1721 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1722 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1723 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1724 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1725 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1726 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1727 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1728 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1729 },
1730 },
1731 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001732 },
1733 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001734 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001735 &quot;chinaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in China. When approved or disapproved, this status applies to both deals and open auction in China. When pending review, this creative is allowed to serve for deals but not for open auction.
1736 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1737 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1738 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1739 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1740 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1741 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1742 { # Evidence associated with a policy topic entry.
1743 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1744 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1745 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1746 &quot;A String&quot;,
1747 ],
1748 },
1749 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1750 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1751 { # The URL-level breakdown for the download size.
1752 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1753 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1754 },
1755 ],
1756 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1757 },
1758 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1759 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1760 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1761 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1762 },
1763 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1764 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1765 },
1766 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1767 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1768 { # The number of HTTP calls made to the given domain.
1769 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1770 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1771 },
1772 ],
1773 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1774 },
1775 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1776 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1777 &quot;A String&quot;,
1778 ],
1779 },
1780 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1781 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1782 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1783 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1784 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1785 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1786 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1787 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1788 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1789 },
1790 },
1791 ],
1792 },
1793 ],
1794 },
1795 &quot;detectedSensitiveCategories&quot;: [ # Detected sensitive categories, if any. Can be used to filter the response of the creatives.list method. 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.
1796 42,
1797 ],
1798 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
1799 &quot;A String&quot;,
1800 ],
1801 &quot;dealsServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding on PG and PD deals (outside of Russia and China).
1802 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1803 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1804 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1805 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1806 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1807 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1808 { # Evidence associated with a policy topic entry.
1809 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1810 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1811 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1812 &quot;A String&quot;,
1813 ],
1814 },
1815 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1816 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1817 { # The URL-level breakdown for the download size.
1818 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1819 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1820 },
1821 ],
1822 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1823 },
1824 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1825 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1826 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1827 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1828 },
1829 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1830 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1831 },
1832 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1833 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1834 { # The number of HTTP calls made to the given domain.
1835 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1836 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1837 },
1838 ],
1839 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1840 },
1841 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1842 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1843 &quot;A String&quot;,
1844 ],
1845 },
1846 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1847 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1848 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1849 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1850 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1851 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1852 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1853 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1854 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1855 },
1856 },
1857 ],
1858 },
1859 ],
1860 },
1861 &quot;detectedProductCategories&quot;: [ # Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs. Can be used to filter the response of the creatives.list method.
1862 42,
1863 ],
1864 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # The detected ad technology providers.
1865 &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.
1866 &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.
1867 &quot;A String&quot;,
1868 ],
1869 },
1870 &quot;russiaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in Russia. When approved or disapproved, this status applies to both deals and open auction in Russia. When pending review, this creative is allowed to serve for deals but not for open auction.
1871 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
1872 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1873 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
1874 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
1875 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1876 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1877 { # Evidence associated with a policy topic entry.
1878 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1879 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
1880 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
1881 &quot;A String&quot;,
1882 ],
1883 },
1884 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
1885 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1886 { # The URL-level breakdown for the download size.
1887 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1888 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1889 },
1890 ],
1891 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1892 },
1893 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
1894 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1895 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1896 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1897 },
1898 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1899 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1900 },
1901 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
1902 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1903 { # The number of HTTP calls made to the given domain.
1904 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1905 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1906 },
1907 ],
1908 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
1909 },
1910 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
1911 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1912 &quot;A String&quot;,
1913 ],
1914 },
1915 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
1916 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1917 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1918 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1919 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
1920 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1921 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1922 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1923 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1924 },
1925 },
1926 ],
1927 },
1928 ],
1929 },
1930 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
1931 &quot;A String&quot;,
1932 ],
1933 &quot;detectedVendorIds&quot;: [ # IDs of the ad technology vendors that were detected to be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method. If the `allowed_vendor_type` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) does not contain one of the vendor type IDs that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
1934 42,
1935 ],
1936 &quot;detectedLanguages&quot;: [ # 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. Can be used to filter the response of the creatives.list method.
1937 &quot;A String&quot;,
1938 ],
1939 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
1940 { # Detected advertiser and brand information.
1941 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
1942 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
1943 &quot;advertiserId&quot;: &quot;A String&quot;, # See https://storage.googleapis.com/adx-rtb-dictionaries/advertisers.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
1944 &quot;brandId&quot;: &quot;A String&quot;, # Detected brand ID or zero if no brand has been detected. See https://storage.googleapis.com/adx-rtb-dictionaries/brands.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
1945 },
1946 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001947 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001948 &quot;video&quot;: { # Video content for a creative. # A video creative.
1949 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
1950 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
1951 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
1952 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
1953 &quot;skipOffset&quot;: &quot;A String&quot;, # The minimum duration that the user has to watch before being able to skip this ad. If the field is not set, the ad is not skippable. If the field is set, the ad is skippable. Can be used to filter the response of the creatives.list method.
1954 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
1955 &quot;mediaFiles&quot;: [ # The list of all media files declared in the VAST. If there are multiple VASTs in a wrapper chain, this includes the media files from the deepest one in the chain.
1956 { # Information about each media file in the VAST.
1957 &quot;bitrate&quot;: &quot;A String&quot;, # Bitrate of the video file, in Kbps. Can be used to filter the response of the creatives.list method.
1958 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of this media file. Can be used to filter the response of the creatives.list method.
1959 },
1960 ],
1961 &quot;vastVersion&quot;: &quot;A String&quot;, # The maximum VAST version across all wrapped VAST documents. Can be used to filter the response of the creatives.list method.
1962 },
1963 &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.
1964 },
1965 &quot;declaredAttributes&quot;: [ # All declared attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto&quot;) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
1966 &quot;A String&quot;,
1967 ],
1968 &quot;accountId&quot;: &quot;A String&quot;, # Output only. ID of the buyer account that this creative is owned by. Can be used to filter the response of the creatives.list method with equality and inequality check.
1969 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
1970 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
1971 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative. Can be used to filter the response of the creatives.list method.
1972 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
1973 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
1974 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
1975 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
1976 },
1977 &quot;dealIds&quot;: [ # Output only. IDs of all of the deals with which this creative has been used in bidding. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001978 &quot;A String&quot;,
1979 ],
1980 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001981 &quot;creativeFormat&quot;: &quot;A String&quot;, # Output only. The format of this creative. Can be used to filter the response of the creatives.list method.
1982 &quot;name&quot;: &quot;A String&quot;, # Name of the creative. Follows the pattern `buyers/{buyer}/creatives/{creative}`, where `{buyer}` represents the account ID of the buyer who owns the creative, and `{creative}` is the buyer-specific creative ID that references this creative in the bid response.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001983}
1984
1985 updateMask: string, Field mask to use for partial in-place updates.
1986 x__xgafv: string, V1 error format.
1987 Allowed values
1988 1 - v1 error format
1989 2 - v2 error format
1990
1991Returns:
1992 An object of the form:
1993
1994 { # A creative and its classification data.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001995 &quot;native&quot;: { # Native content for a creative. # A native creative.
1996 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
1997 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
1998 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
1999 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
2000 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
2001 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
2002 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
2003 &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.
2004 &quot;height&quot;: 42, # Image height in pixels.
2005 &quot;width&quot;: 42, # Image width in pixels.
2006 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002007 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002008 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
2009 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
2010 &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.
2011 &quot;height&quot;: 42, # Image height in pixels.
2012 &quot;width&quot;: 42, # Image width in pixels.
2013 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002014 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002015 &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.
2016 &quot;height&quot;: 42, # Image height in pixels.
2017 &quot;width&quot;: 42, # Image width in pixels.
2018 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002019 },
2020 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002021 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
2022 &quot;A String&quot;,
2023 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002024 &quot;declaredVendorIds&quot;: [ # IDs for the declared ad technology vendors that may be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method.
2025 42,
2026 ],
2027 &quot;declaredRestrictedCategories&quot;: [ # All declared restricted categories for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method.
2028 &quot;A String&quot;,
2029 ],
2030 &quot;version&quot;: 42, # Output only. The version of this creative. Version for a new creative is 1 and it increments during subsequent creative updates.
2031 &quot;creativeId&quot;: &quot;A String&quot;, # Buyer-specific creative ID that references this creative in bid responses. This field is Ignored in update operations. Can be used to filter the response of the creatives.list method. The maximum length of the creative ID is 128 bytes.
2032 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002033 &quot;A String&quot;,
2034 ],
2035 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
2036 &quot;A String&quot;,
2037 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002038 &quot;creativeServingDecision&quot;: { # Top level status and detected attributes of a creative. # Output only. Top level status and detected attributes of a creative (for example domain, language, advertiser, product category, etc.) that affect whether (status) and where (context) a creative will be allowed to serve.
2039 &quot;detectedAttributes&quot;: [ # Publisher-excludable attributes that were detected for this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
2040 &quot;A String&quot;,
2041 ],
2042 &quot;lastStatusUpdate&quot;: &quot;A String&quot;, # The last time the creative status was updated. Can be used to filter the response of the creatives.list method.
2043 &quot;openAuctionServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
2044 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
2045 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2046 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
2047 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
2048 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2049 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2050 { # Evidence associated with a policy topic entry.
2051 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2052 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
2053 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
2054 &quot;A String&quot;,
2055 ],
2056 },
2057 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
2058 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2059 { # The URL-level breakdown for the download size.
2060 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2061 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2062 },
2063 ],
2064 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2065 },
2066 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
2067 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2068 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2069 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2070 },
2071 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2072 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2073 },
2074 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
2075 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2076 { # The number of HTTP calls made to the given domain.
2077 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2078 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2079 },
2080 ],
2081 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
2082 },
2083 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
2084 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2085 &quot;A String&quot;,
2086 ],
2087 },
2088 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
2089 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2090 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2091 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2092 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
2093 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2094 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2095 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2096 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2097 },
2098 },
2099 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002100 },
2101 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002102 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002103 &quot;chinaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in China. When approved or disapproved, this status applies to both deals and open auction in China. When pending review, this creative is allowed to serve for deals but not for open auction.
2104 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
2105 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2106 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
2107 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
2108 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2109 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2110 { # Evidence associated with a policy topic entry.
2111 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2112 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
2113 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
2114 &quot;A String&quot;,
2115 ],
2116 },
2117 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
2118 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2119 { # The URL-level breakdown for the download size.
2120 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2121 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2122 },
2123 ],
2124 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2125 },
2126 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
2127 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2128 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2129 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2130 },
2131 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2132 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2133 },
2134 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
2135 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2136 { # The number of HTTP calls made to the given domain.
2137 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2138 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2139 },
2140 ],
2141 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
2142 },
2143 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
2144 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2145 &quot;A String&quot;,
2146 ],
2147 },
2148 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
2149 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2150 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2151 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2152 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
2153 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2154 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2155 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2156 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2157 },
2158 },
2159 ],
2160 },
2161 ],
2162 },
2163 &quot;detectedSensitiveCategories&quot;: [ # Detected sensitive categories, if any. Can be used to filter the response of the creatives.list method. 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.
2164 42,
2165 ],
2166 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
2167 &quot;A String&quot;,
2168 ],
2169 &quot;dealsServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # Status of this creative when bidding on PG and PD deals (outside of Russia and China).
2170 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
2171 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2172 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
2173 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
2174 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2175 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2176 { # Evidence associated with a policy topic entry.
2177 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2178 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
2179 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
2180 &quot;A String&quot;,
2181 ],
2182 },
2183 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
2184 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2185 { # The URL-level breakdown for the download size.
2186 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2187 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2188 },
2189 ],
2190 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2191 },
2192 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
2193 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2194 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2195 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2196 },
2197 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2198 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2199 },
2200 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
2201 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2202 { # The number of HTTP calls made to the given domain.
2203 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2204 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2205 },
2206 ],
2207 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
2208 },
2209 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
2210 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2211 &quot;A String&quot;,
2212 ],
2213 },
2214 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
2215 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2216 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2217 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2218 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
2219 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2220 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2221 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2222 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2223 },
2224 },
2225 ],
2226 },
2227 ],
2228 },
2229 &quot;detectedProductCategories&quot;: [ # Detected product categories, if any. See the ad-product-categories.txt file in the technical documentation for a list of IDs. Can be used to filter the response of the creatives.list method.
2230 42,
2231 ],
2232 &quot;adTechnologyProviders&quot;: { # Detected ad technology provider information. # The detected ad technology providers.
2233 &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.
2234 &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.
2235 &quot;A String&quot;,
2236 ],
2237 },
2238 &quot;russiaServingStatus&quot;: { # Serving status of the creative for a transaction type or a region. # The serving status of this creative in Russia. When approved or disapproved, this status applies to both deals and open auction in Russia. When pending review, this creative is allowed to serve for deals but not for open auction.
2239 &quot;status&quot;: &quot;A String&quot;, # Serving status for the given transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Can be used to filter the response of the creatives.list method.
2240 &quot;topics&quot;: [ # Policy topics related to the serving decision for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2241 { # Each policy topic entry will represent a violation of a policy topic for a creative, with the policy topic information and optional evidence for the policy violation.
2242 &quot;policyTopic&quot;: &quot;A String&quot;, # Policy topic this entry refers to. For example, &quot;ALCOHOL&quot;, &quot;TRADEMARKS_IN_AD_TEXT&quot;, or &quot;DESTINATION_NOT_WORKING&quot;. The set of possible policy topics is not fixed for a particular API version and may change at any time. Can be used to filter the response of the creatives.list method
2243 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2244 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2245 { # Evidence associated with a policy topic entry.
2246 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2247 &quot;maxCookieCount&quot;: 42, # The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.
2248 &quot;cookieNames&quot;: [ # Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.
2249 &quot;A String&quot;,
2250 ],
2251 },
2252 &quot;downloadSize&quot;: { # Total download size and URL-level download size breakdown for resources in a creative. # Total download size and URL-level download size breakdown for resources in a creative.
2253 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2254 { # The URL-level breakdown for the download size.
2255 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2256 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2257 },
2258 ],
2259 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2260 },
2261 &quot;destinationNotCrawlable&quot;: { # Evidence that the creative&#x27;s destination URL was not crawlable by Google. # The creative&#x27;s destination URL was not crawlable by Google.
2262 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2263 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2264 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2265 },
2266 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2267 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2268 },
2269 &quot;domainCall&quot;: { # Number of HTTP calls made by a creative, broken down by domain. # Number of HTTP calls made by the creative, broken down by domain.
2270 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2271 { # The number of HTTP calls made to the given domain.
2272 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2273 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2274 },
2275 ],
2276 &quot;totalHttpCallCount&quot;: 42, # The total number of HTTP calls made by the creative, including but not limited to the number of calls in the top_http_call_domains.
2277 },
2278 &quot;httpCall&quot;: { # HTTP calls made by a creative that resulted in policy violations. # HTTP calls made by the creative that resulted in policy violations.
2279 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2280 &quot;A String&quot;,
2281 ],
2282 },
2283 &quot;destinationNotWorking&quot;: { # Evidence of the creative&#x27;s destination URL not functioning properly or having been incorrectly set up. # The creative&#x27;s destination URL did not function properly or was incorrectly set up.
2284 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2285 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2286 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2287 &quot;invalidPage&quot;: &quot;A String&quot;, # Page was crawled successfully, but was detected as either a page with no content or an error page.
2288 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2289 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2290 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2291 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2292 },
2293 },
2294 ],
2295 },
2296 ],
2297 },
2298 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
2299 &quot;A String&quot;,
2300 ],
2301 &quot;detectedVendorIds&quot;: [ # IDs of the ad technology vendors that were detected to be used by this creative. See https://storage.googleapis.com/adx-rtb-dictionaries/vendors.txt for possible values. Can be used to filter the response of the creatives.list method. If the `allowed_vendor_type` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto) does not contain one of the vendor type IDs that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
2302 42,
2303 ],
2304 &quot;detectedLanguages&quot;: [ # 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. Can be used to filter the response of the creatives.list method.
2305 &quot;A String&quot;,
2306 ],
2307 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
2308 { # Detected advertiser and brand information.
2309 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
2310 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
2311 &quot;advertiserId&quot;: &quot;A String&quot;, # See https://storage.googleapis.com/adx-rtb-dictionaries/advertisers.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
2312 &quot;brandId&quot;: &quot;A String&quot;, # Detected brand ID or zero if no brand has been detected. See https://storage.googleapis.com/adx-rtb-dictionaries/brands.txt for the list of possible values. Can be used to filter the response of the creatives.list method.
2313 },
2314 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002315 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002316 &quot;video&quot;: { # Video content for a creative. # A video creative.
2317 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
2318 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
2319 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
2320 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
2321 &quot;skipOffset&quot;: &quot;A String&quot;, # The minimum duration that the user has to watch before being able to skip this ad. If the field is not set, the ad is not skippable. If the field is set, the ad is skippable. Can be used to filter the response of the creatives.list method.
2322 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
2323 &quot;mediaFiles&quot;: [ # The list of all media files declared in the VAST. If there are multiple VASTs in a wrapper chain, this includes the media files from the deepest one in the chain.
2324 { # Information about each media file in the VAST.
2325 &quot;bitrate&quot;: &quot;A String&quot;, # Bitrate of the video file, in Kbps. Can be used to filter the response of the creatives.list method.
2326 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of this media file. Can be used to filter the response of the creatives.list method.
2327 },
2328 ],
2329 &quot;vastVersion&quot;: &quot;A String&quot;, # The maximum VAST version across all wrapped VAST documents. Can be used to filter the response of the creatives.list method.
2330 },
2331 &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.
2332 },
2333 &quot;declaredAttributes&quot;: [ # All declared attributes for the ads that may be shown from this creative. Can be used to filter the response of the creatives.list method. If the `excluded_attribute` field of a [bid request](https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto&quot;) contains one of the attributes that were declared or detected for a given creative, and a bid is submitted with that creative, the bid will be filtered before the auction.
2334 &quot;A String&quot;,
2335 ],
2336 &quot;accountId&quot;: &quot;A String&quot;, # Output only. ID of the buyer account that this creative is owned by. Can be used to filter the response of the creatives.list method with equality and inequality check.
2337 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
2338 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
2339 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the company being advertised in the creative. Can be used to filter the response of the creatives.list method.
2340 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
2341 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
2342 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
2343 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
2344 },
2345 &quot;dealIds&quot;: [ # Output only. IDs of all of the deals with which this creative has been used in bidding. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002346 &quot;A String&quot;,
2347 ],
2348 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002349 &quot;creativeFormat&quot;: &quot;A String&quot;, # Output only. The format of this creative. Can be used to filter the response of the creatives.list method.
2350 &quot;name&quot;: &quot;A String&quot;, # Name of the creative. Follows the pattern `buyers/{buyer}/creatives/{creative}`, where `{buyer}` represents the account ID of the buyer who owns the creative, and `{creative}` is the buyer-specific creative ID that references this creative in the bid response.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002351 }</pre>
2352</div>
2353
2354</body></html>