blob: 355af114900baf26fc0cc47f181e7a6736470d0b [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">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070087 <code><a href="#list">list(parent, view=None, pageSize=None, pageToken=None, filter=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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700111 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
112 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
113 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
114 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700115 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700116 &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.
117 &quot;name&quot;: &quot;A String&quot;, # Output only. 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.
118 &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 -0700119 &quot;A String&quot;,
120 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700121 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700122 &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.
123 42,
124 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700125 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700126 &quot;video&quot;: { # Video content for a creative. # A video creative.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700127 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700128 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
129 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700130 &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.
131 { # Information about each media file in the VAST.
132 &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.
133 &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.
134 },
135 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700136 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
137 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700138 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700139 &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.
140 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700141 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700142 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700143 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
144 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
145 &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.
146 &quot;dealsPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding on Programmatic Guaranteed and Preferred Deals (outside of Russia and China).
147 &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.
148 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
149 { # 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.
150 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
151 &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
152 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
153 { # Evidence associated with a policy topic entry.
154 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
155 &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.
156 &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.
157 &quot;A String&quot;,
158 ],
159 },
160 &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.
161 &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.
162 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
163 { # The number of HTTP calls made to the given domain.
164 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
165 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
166 },
167 ],
168 },
169 &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.
170 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
171 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
172 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
173 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
174 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
175 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
176 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
177 &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.
178 },
179 &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.
180 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
181 &quot;A String&quot;,
182 ],
183 },
184 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
185 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
186 },
187 &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.
188 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
189 { # The URL-level breakdown for the download size.
190 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
191 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
192 },
193 ],
194 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
195 },
196 &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.
197 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
198 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
199 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
200 },
201 },
202 ],
203 },
204 ],
205 },
206 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
207 &quot;A String&quot;,
208 ],
209 &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.
210 &quot;A String&quot;,
211 ],
212 &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.
213 42,
214 ],
215 &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.
216 &quot;A String&quot;,
217 ],
218 &quot;russiaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in Russia. When approved or disapproved, this 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.
219 &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.
220 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
221 { # 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.
222 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
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;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
225 { # Evidence associated with a policy topic entry.
226 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
227 &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.
228 &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.
229 &quot;A String&quot;,
230 ],
231 },
232 &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.
233 &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.
234 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
235 { # The number of HTTP calls made to the given domain.
236 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
237 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
238 },
239 ],
240 },
241 &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.
242 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
243 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
244 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
245 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
246 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
247 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
248 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
249 &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.
250 },
251 &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.
252 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
253 &quot;A String&quot;,
254 ],
255 },
256 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
257 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
258 },
259 &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.
260 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
261 { # The URL-level breakdown for the download size.
262 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
263 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
264 },
265 ],
266 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
267 },
268 &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.
269 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
270 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
271 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
272 },
273 },
274 ],
275 },
276 ],
277 },
278 &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.
279 &quot;chinaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in China. When approved or disapproved, this 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.
280 &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.
281 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
282 { # 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.
283 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
284 &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
285 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
286 { # Evidence associated with a policy topic entry.
287 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
288 &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.
289 &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.
290 &quot;A String&quot;,
291 ],
292 },
293 &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.
294 &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.
295 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
296 { # The number of HTTP calls made to the given domain.
297 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
298 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
299 },
300 ],
301 },
302 &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.
303 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
304 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
305 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
306 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
307 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
308 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
309 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
310 &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.
311 },
312 &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.
313 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
314 &quot;A String&quot;,
315 ],
316 },
317 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
318 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
319 },
320 &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.
321 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
322 { # The URL-level breakdown for the download size.
323 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
324 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
325 },
326 ],
327 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
328 },
329 &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.
330 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
331 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
332 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
333 },
334 },
335 ],
336 },
337 ],
338 },
339 &quot;platformPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in Open Bidding (outside of Russia and China). For the list of platform policies, see: https://support.google.com/platformspolicy/answer/3013851.
340 &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.
341 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
342 { # 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.
343 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
344 &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
345 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
346 { # Evidence associated with a policy topic entry.
347 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
348 &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.
349 &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.
350 &quot;A String&quot;,
351 ],
352 },
353 &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.
354 &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.
355 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
356 { # The number of HTTP calls made to the given domain.
357 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
358 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
359 },
360 ],
361 },
362 &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.
363 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
364 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
365 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
366 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
367 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
368 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
369 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
370 &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.
371 },
372 &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.
373 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
374 &quot;A String&quot;,
375 ],
376 },
377 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
378 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
379 },
380 &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.
381 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
382 { # The URL-level breakdown for the download size.
383 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
384 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
385 },
386 ],
387 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
388 },
389 &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.
390 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
391 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
392 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
393 },
394 },
395 ],
396 },
397 ],
398 },
399 &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.
400 42,
401 ],
402 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
403 &quot;A String&quot;,
404 ],
405 &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.
406 42,
407 ],
408 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
409 { # Detected advertiser and brand information.
410 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
411 &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.
412 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
413 &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.
414 },
415 ],
416 &quot;networkPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
417 &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.
418 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
419 { # 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.
420 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
421 &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
422 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
423 { # Evidence associated with a policy topic entry.
424 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
425 &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.
426 &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.
427 &quot;A String&quot;,
428 ],
429 },
430 &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.
431 &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.
432 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
433 { # The number of HTTP calls made to the given domain.
434 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
435 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
436 },
437 ],
438 },
439 &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.
440 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
441 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
442 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
443 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
444 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
445 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
446 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
447 &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.
448 },
449 &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.
450 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
451 &quot;A String&quot;,
452 ],
453 },
454 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
455 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
456 },
457 &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.
458 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
459 { # The URL-level breakdown for the download size.
460 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
461 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
462 },
463 ],
464 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
465 },
466 &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.
467 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
468 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
469 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
470 },
471 },
472 ],
473 },
474 ],
475 },
476 },
477 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700478 &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.
479 &quot;A String&quot;,
480 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700481 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700482 &quot;A String&quot;,
483 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700484 &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.
485 &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.
486 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
487 &quot;A String&quot;,
488 ],
489 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
490 &quot;A String&quot;,
491 ],
492 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
493 &quot;A String&quot;,
494 ],
495 &quot;native&quot;: { # Native content for a creative. # A native creative.
496 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
497 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
498 &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.
499 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
500 &quot;height&quot;: 42, # Image height in pixels.
501 &quot;width&quot;: 42, # Image width in pixels.
502 },
503 &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.
504 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
505 &quot;height&quot;: 42, # Image height in pixels.
506 &quot;width&quot;: 42, # Image width in pixels.
507 },
508 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
509 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
510 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
511 &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.
512 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
513 &quot;height&quot;: 42, # Image height in pixels.
514 &quot;width&quot;: 42, # Image width in pixels.
515 },
516 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
517 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
518 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
519 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
520 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700521}
522
523 x__xgafv: string, V1 error format.
524 Allowed values
525 1 - v1 error format
526 2 - v2 error format
527
528Returns:
529 An object of the form:
530
531 { # A creative and its classification data.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700532 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
533 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
534 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
535 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700536 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700537 &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.
538 &quot;name&quot;: &quot;A String&quot;, # Output only. 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.
539 &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 -0700540 &quot;A String&quot;,
541 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700542 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700543 &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.
544 42,
545 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700546 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700547 &quot;video&quot;: { # Video content for a creative. # A video creative.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700548 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700549 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
550 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700551 &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.
552 { # Information about each media file in the VAST.
553 &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.
554 &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.
555 },
556 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700557 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
558 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700559 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700560 &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.
561 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700562 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700563 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700564 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
565 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
566 &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.
567 &quot;dealsPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding on Programmatic Guaranteed and Preferred Deals (outside of Russia and China).
568 &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.
569 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
570 { # 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.
571 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
572 &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
573 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
574 { # Evidence associated with a policy topic entry.
575 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
576 &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.
577 &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.
578 &quot;A String&quot;,
579 ],
580 },
581 &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.
582 &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.
583 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
584 { # The number of HTTP calls made to the given domain.
585 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
586 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
587 },
588 ],
589 },
590 &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.
591 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
592 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
593 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
594 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
595 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
596 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
597 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
598 &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.
599 },
600 &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.
601 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
602 &quot;A String&quot;,
603 ],
604 },
605 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
606 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
607 },
608 &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.
609 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
610 { # The URL-level breakdown for the download size.
611 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
612 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
613 },
614 ],
615 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
616 },
617 &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.
618 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
619 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
620 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
621 },
622 },
623 ],
624 },
625 ],
626 },
627 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
628 &quot;A String&quot;,
629 ],
630 &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.
631 &quot;A String&quot;,
632 ],
633 &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.
634 42,
635 ],
636 &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.
637 &quot;A String&quot;,
638 ],
639 &quot;russiaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in Russia. When approved or disapproved, this 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.
640 &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.
641 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
642 { # 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.
643 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
644 &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
645 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
646 { # Evidence associated with a policy topic entry.
647 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
648 &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.
649 &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.
650 &quot;A String&quot;,
651 ],
652 },
653 &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.
654 &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.
655 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
656 { # The number of HTTP calls made to the given domain.
657 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
658 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
659 },
660 ],
661 },
662 &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.
663 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
664 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
665 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
666 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
667 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
668 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
669 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
670 &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.
671 },
672 &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.
673 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
674 &quot;A String&quot;,
675 ],
676 },
677 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
678 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
679 },
680 &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.
681 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
682 { # The URL-level breakdown for the download size.
683 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
684 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
685 },
686 ],
687 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
688 },
689 &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.
690 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
691 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
692 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
693 },
694 },
695 ],
696 },
697 ],
698 },
699 &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.
700 &quot;chinaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in China. When approved or disapproved, this 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.
701 &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.
702 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
703 { # 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.
704 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
705 &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
706 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
707 { # Evidence associated with a policy topic entry.
708 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
709 &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.
710 &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.
711 &quot;A String&quot;,
712 ],
713 },
714 &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.
715 &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.
716 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
717 { # The number of HTTP calls made to the given domain.
718 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
719 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
720 },
721 ],
722 },
723 &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.
724 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
725 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
726 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
727 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
728 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
729 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
730 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
731 &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.
732 },
733 &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.
734 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
735 &quot;A String&quot;,
736 ],
737 },
738 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
739 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
740 },
741 &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.
742 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
743 { # The URL-level breakdown for the download size.
744 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
745 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
746 },
747 ],
748 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
749 },
750 &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.
751 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
752 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
753 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
754 },
755 },
756 ],
757 },
758 ],
759 },
760 &quot;platformPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in Open Bidding (outside of Russia and China). For the list of platform policies, see: https://support.google.com/platformspolicy/answer/3013851.
761 &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.
762 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
763 { # 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.
764 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
765 &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
766 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
767 { # Evidence associated with a policy topic entry.
768 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
769 &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.
770 &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.
771 &quot;A String&quot;,
772 ],
773 },
774 &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.
775 &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.
776 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
777 { # The number of HTTP calls made to the given domain.
778 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
779 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
780 },
781 ],
782 },
783 &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.
784 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
785 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
786 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
787 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
788 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
789 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
790 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
791 &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.
792 },
793 &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.
794 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
795 &quot;A String&quot;,
796 ],
797 },
798 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
799 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
800 },
801 &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.
802 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
803 { # The URL-level breakdown for the download size.
804 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
805 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
806 },
807 ],
808 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
809 },
810 &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.
811 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
812 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
813 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
814 },
815 },
816 ],
817 },
818 ],
819 },
820 &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.
821 42,
822 ],
823 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
824 &quot;A String&quot;,
825 ],
826 &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.
827 42,
828 ],
829 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
830 { # Detected advertiser and brand information.
831 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
832 &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.
833 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
834 &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.
835 },
836 ],
837 &quot;networkPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
838 &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.
839 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
840 { # 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.
841 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
842 &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
843 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
844 { # Evidence associated with a policy topic entry.
845 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
846 &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.
847 &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.
848 &quot;A String&quot;,
849 ],
850 },
851 &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.
852 &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.
853 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
854 { # The number of HTTP calls made to the given domain.
855 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
856 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
857 },
858 ],
859 },
860 &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.
861 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
862 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
863 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
864 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
865 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
866 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
867 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
868 &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.
869 },
870 &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.
871 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
872 &quot;A String&quot;,
873 ],
874 },
875 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
876 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
877 },
878 &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.
879 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
880 { # The URL-level breakdown for the download size.
881 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
882 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
883 },
884 ],
885 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
886 },
887 &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.
888 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
889 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
890 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
891 },
892 },
893 ],
894 },
895 ],
896 },
897 },
898 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700899 &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.
900 &quot;A String&quot;,
901 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700902 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700903 &quot;A String&quot;,
904 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700905 &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.
906 &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.
907 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
908 &quot;A String&quot;,
909 ],
910 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
911 &quot;A String&quot;,
912 ],
913 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
914 &quot;A String&quot;,
915 ],
916 &quot;native&quot;: { # Native content for a creative. # A native creative.
917 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
918 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
919 &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.
920 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
921 &quot;height&quot;: 42, # Image height in pixels.
922 &quot;width&quot;: 42, # Image width in pixels.
923 },
924 &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.
925 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
926 &quot;height&quot;: 42, # Image height in pixels.
927 &quot;width&quot;: 42, # Image width in pixels.
928 },
929 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
930 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
931 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
932 &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.
933 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
934 &quot;height&quot;: 42, # Image height in pixels.
935 &quot;width&quot;: 42, # Image width in pixels.
936 },
937 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
938 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
939 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
940 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
941 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700942 }</pre>
943</div>
944
945<div class="method">
946 <code class="details" id="get">get(name, view=None, x__xgafv=None)</code>
947 <pre>Gets a creative.
948
949Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700950 name: string, Required. Name of the creative to retrieve. See creative.name. (required)
951 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;.
952 Allowed values
953 CREATIVE_VIEW_UNSPECIFIED - Not specified, equivalent to SERVING_DECISION_ONLY.
954 SERVING_DECISION_ONLY - Only creativeServingDecision is included in the response.
955 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 -0700956 x__xgafv: string, V1 error format.
957 Allowed values
958 1 - v1 error format
959 2 - v2 error format
960
961Returns:
962 An object of the form:
963
964 { # A creative and its classification data.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700965 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
966 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
967 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
968 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700969 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700970 &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.
971 &quot;name&quot;: &quot;A String&quot;, # Output only. 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.
972 &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 -0700973 &quot;A String&quot;,
974 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700975 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700976 &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.
977 42,
978 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700979 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700980 &quot;video&quot;: { # Video content for a creative. # A video creative.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700981 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700982 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
983 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700984 &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.
985 { # Information about each media file in the VAST.
986 &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.
987 &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.
988 },
989 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700990 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
991 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700992 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700993 &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.
994 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700995 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700996 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700997 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
998 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
999 &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.
1000 &quot;dealsPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding on Programmatic Guaranteed and Preferred Deals (outside of Russia and China).
1001 &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.
1002 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1003 { # 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.
1004 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1005 &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
1006 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1007 { # Evidence associated with a policy topic entry.
1008 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1009 &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.
1010 &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.
1011 &quot;A String&quot;,
1012 ],
1013 },
1014 &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.
1015 &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.
1016 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1017 { # The number of HTTP calls made to the given domain.
1018 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1019 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1020 },
1021 ],
1022 },
1023 &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.
1024 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1025 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1026 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1027 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1028 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1029 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1030 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1031 &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.
1032 },
1033 &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.
1034 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1035 &quot;A String&quot;,
1036 ],
1037 },
1038 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1039 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1040 },
1041 &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.
1042 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1043 { # The URL-level breakdown for the download size.
1044 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1045 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1046 },
1047 ],
1048 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1049 },
1050 &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.
1051 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1052 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1053 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1054 },
1055 },
1056 ],
1057 },
1058 ],
1059 },
1060 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
1061 &quot;A String&quot;,
1062 ],
1063 &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.
1064 &quot;A String&quot;,
1065 ],
1066 &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.
1067 42,
1068 ],
1069 &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.
1070 &quot;A String&quot;,
1071 ],
1072 &quot;russiaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in Russia. When approved or disapproved, this 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.
1073 &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.
1074 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1075 { # 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.
1076 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1077 &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
1078 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1079 { # Evidence associated with a policy topic entry.
1080 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1081 &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.
1082 &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.
1083 &quot;A String&quot;,
1084 ],
1085 },
1086 &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.
1087 &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.
1088 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1089 { # The number of HTTP calls made to the given domain.
1090 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1091 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1092 },
1093 ],
1094 },
1095 &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.
1096 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1097 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1098 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1099 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1100 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1101 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1102 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1103 &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.
1104 },
1105 &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.
1106 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1107 &quot;A String&quot;,
1108 ],
1109 },
1110 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1111 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1112 },
1113 &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.
1114 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1115 { # The URL-level breakdown for the download size.
1116 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1117 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1118 },
1119 ],
1120 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1121 },
1122 &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.
1123 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1124 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1125 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1126 },
1127 },
1128 ],
1129 },
1130 ],
1131 },
1132 &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.
1133 &quot;chinaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in China. When approved or disapproved, this 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.
1134 &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.
1135 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1136 { # 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.
1137 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1138 &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
1139 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1140 { # Evidence associated with a policy topic entry.
1141 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1142 &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.
1143 &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.
1144 &quot;A String&quot;,
1145 ],
1146 },
1147 &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.
1148 &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.
1149 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1150 { # The number of HTTP calls made to the given domain.
1151 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1152 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1153 },
1154 ],
1155 },
1156 &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.
1157 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1158 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1159 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1160 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1161 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1162 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1163 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1164 &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.
1165 },
1166 &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.
1167 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1168 &quot;A String&quot;,
1169 ],
1170 },
1171 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1172 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1173 },
1174 &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.
1175 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1176 { # The URL-level breakdown for the download size.
1177 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1178 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1179 },
1180 ],
1181 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1182 },
1183 &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.
1184 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1185 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1186 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1187 },
1188 },
1189 ],
1190 },
1191 ],
1192 },
1193 &quot;platformPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in Open Bidding (outside of Russia and China). For the list of platform policies, see: https://support.google.com/platformspolicy/answer/3013851.
1194 &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.
1195 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1196 { # 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.
1197 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1198 &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
1199 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1200 { # Evidence associated with a policy topic entry.
1201 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1202 &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.
1203 &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.
1204 &quot;A String&quot;,
1205 ],
1206 },
1207 &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.
1208 &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.
1209 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1210 { # The number of HTTP calls made to the given domain.
1211 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1212 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1213 },
1214 ],
1215 },
1216 &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.
1217 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1218 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1219 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1220 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1221 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1222 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1223 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1224 &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.
1225 },
1226 &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.
1227 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1228 &quot;A String&quot;,
1229 ],
1230 },
1231 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1232 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1233 },
1234 &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.
1235 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1236 { # The URL-level breakdown for the download size.
1237 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1238 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1239 },
1240 ],
1241 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1242 },
1243 &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.
1244 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1245 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1246 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1247 },
1248 },
1249 ],
1250 },
1251 ],
1252 },
1253 &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.
1254 42,
1255 ],
1256 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
1257 &quot;A String&quot;,
1258 ],
1259 &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.
1260 42,
1261 ],
1262 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
1263 { # Detected advertiser and brand information.
1264 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
1265 &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.
1266 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
1267 &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.
1268 },
1269 ],
1270 &quot;networkPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
1271 &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.
1272 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1273 { # 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.
1274 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1275 &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
1276 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1277 { # Evidence associated with a policy topic entry.
1278 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1279 &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.
1280 &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.
1281 &quot;A String&quot;,
1282 ],
1283 },
1284 &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.
1285 &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.
1286 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1287 { # The number of HTTP calls made to the given domain.
1288 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1289 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1290 },
1291 ],
1292 },
1293 &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.
1294 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1295 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1296 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1297 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1298 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1299 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1300 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1301 &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.
1302 },
1303 &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.
1304 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1305 &quot;A String&quot;,
1306 ],
1307 },
1308 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1309 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1310 },
1311 &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.
1312 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1313 { # The URL-level breakdown for the download size.
1314 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1315 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1316 },
1317 ],
1318 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1319 },
1320 &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.
1321 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1322 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1323 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1324 },
1325 },
1326 ],
1327 },
1328 ],
1329 },
1330 },
1331 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001332 &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.
1333 &quot;A String&quot;,
1334 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001335 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001336 &quot;A String&quot;,
1337 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001338 &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.
1339 &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.
1340 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
1341 &quot;A String&quot;,
1342 ],
1343 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
1344 &quot;A String&quot;,
1345 ],
1346 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
1347 &quot;A String&quot;,
1348 ],
1349 &quot;native&quot;: { # Native content for a creative. # A native creative.
1350 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
1351 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
1352 &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.
1353 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1354 &quot;height&quot;: 42, # Image height in pixels.
1355 &quot;width&quot;: 42, # Image width in pixels.
1356 },
1357 &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.
1358 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1359 &quot;height&quot;: 42, # Image height in pixels.
1360 &quot;width&quot;: 42, # Image width in pixels.
1361 },
1362 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
1363 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
1364 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
1365 &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.
1366 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1367 &quot;height&quot;: 42, # Image height in pixels.
1368 &quot;width&quot;: 42, # Image width in pixels.
1369 },
1370 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
1371 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
1372 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
1373 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
1374 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001375 }</pre>
1376</div>
1377
1378<div class="method">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001379 <code class="details" id="list">list(parent, view=None, pageSize=None, pageToken=None, filter=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001380 <pre>Lists creatives.
1381
1382Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001383 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)
1384 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;.
1385 Allowed values
1386 CREATIVE_VIEW_UNSPECIFIED - Not specified, equivalent to SERVING_DECISION_ONLY.
1387 SERVING_DECISION_ONLY - Only creativeServingDecision is included in the response.
1388 FULL - The entire creative resource (including the declared fields and the creative content) is included in the response.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001389 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.
1390 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 Kim673ec5c2020-11-16 11:05:03 -07001391 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;
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001392 x__xgafv: string, V1 error format.
1393 Allowed values
1394 1 - v1 error format
1395 2 - v2 error format
1396
1397Returns:
1398 An object of the form:
1399
1400 { # A response for listing creatives.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001401 &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 -07001402 &quot;creatives&quot;: [ # The list of creatives.
1403 { # A creative and its classification data.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001404 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
1405 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
1406 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
1407 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001408 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001409 &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.
1410 &quot;name&quot;: &quot;A String&quot;, # Output only. 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.
1411 &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 -07001412 &quot;A String&quot;,
1413 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001414 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001415 &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.
1416 42,
1417 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001418 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001419 &quot;video&quot;: { # Video content for a creative. # A video creative.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001420 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001421 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
1422 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001423 &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.
1424 { # Information about each media file in the VAST.
1425 &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.
1426 &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.
1427 },
1428 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001429 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
1430 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001431 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001432 &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.
1433 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001434 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001435 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001436 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
1437 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
1438 &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.
1439 &quot;dealsPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding on Programmatic Guaranteed and Preferred Deals (outside of Russia and China).
1440 &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.
1441 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1442 { # 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.
1443 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1444 &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
1445 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1446 { # Evidence associated with a policy topic entry.
1447 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1448 &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.
1449 &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.
1450 &quot;A String&quot;,
1451 ],
1452 },
1453 &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.
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 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1456 { # The number of HTTP calls made to the given domain.
1457 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1458 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1459 },
1460 ],
1461 },
1462 &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.
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;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
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;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1469 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1470 &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.
1471 },
1472 &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.
1473 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1474 &quot;A String&quot;,
1475 ],
1476 },
1477 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1478 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1479 },
1480 &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.
1481 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1482 { # The URL-level breakdown for the download size.
1483 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1484 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1485 },
1486 ],
1487 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1488 },
1489 &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.
1490 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1491 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1492 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1493 },
1494 },
1495 ],
1496 },
1497 ],
1498 },
1499 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
1500 &quot;A String&quot;,
1501 ],
1502 &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.
1503 &quot;A String&quot;,
1504 ],
1505 &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.
1506 42,
1507 ],
1508 &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.
1509 &quot;A String&quot;,
1510 ],
1511 &quot;russiaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in Russia. When approved or disapproved, this 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.
1512 &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.
1513 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1514 { # 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.
1515 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1516 &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
1517 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1518 { # Evidence associated with a policy topic entry.
1519 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1520 &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.
1521 &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.
1522 &quot;A String&quot;,
1523 ],
1524 },
1525 &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.
1526 &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.
1527 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1528 { # The number of HTTP calls made to the given domain.
1529 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1530 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1531 },
1532 ],
1533 },
1534 &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.
1535 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1536 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1537 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1538 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1539 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1540 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1541 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1542 &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.
1543 },
1544 &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.
1545 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1546 &quot;A String&quot;,
1547 ],
1548 },
1549 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1550 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1551 },
1552 &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.
1553 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1554 { # The URL-level breakdown for the download size.
1555 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1556 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1557 },
1558 ],
1559 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1560 },
1561 &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.
1562 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1563 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1564 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1565 },
1566 },
1567 ],
1568 },
1569 ],
1570 },
1571 &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.
1572 &quot;chinaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in China. When approved or disapproved, this 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.
1573 &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.
1574 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1575 { # 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.
1576 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1577 &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
1578 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1579 { # Evidence associated with a policy topic entry.
1580 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1581 &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.
1582 &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.
1583 &quot;A String&quot;,
1584 ],
1585 },
1586 &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.
1587 &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.
1588 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1589 { # The number of HTTP calls made to the given domain.
1590 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1591 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1592 },
1593 ],
1594 },
1595 &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.
1596 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1597 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1598 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1599 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1600 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1601 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1602 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1603 &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.
1604 },
1605 &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.
1606 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1607 &quot;A String&quot;,
1608 ],
1609 },
1610 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1611 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1612 },
1613 &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.
1614 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1615 { # The URL-level breakdown for the download size.
1616 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1617 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1618 },
1619 ],
1620 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1621 },
1622 &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.
1623 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1624 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1625 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1626 },
1627 },
1628 ],
1629 },
1630 ],
1631 },
1632 &quot;platformPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in Open Bidding (outside of Russia and China). For the list of platform policies, see: https://support.google.com/platformspolicy/answer/3013851.
1633 &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.
1634 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1635 { # 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.
1636 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1637 &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
1638 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1639 { # Evidence associated with a policy topic entry.
1640 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1641 &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.
1642 &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.
1643 &quot;A String&quot;,
1644 ],
1645 },
1646 &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.
1647 &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.
1648 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1649 { # The number of HTTP calls made to the given domain.
1650 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1651 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1652 },
1653 ],
1654 },
1655 &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.
1656 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1657 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1658 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1659 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1660 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1661 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1662 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1663 &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.
1664 },
1665 &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.
1666 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1667 &quot;A String&quot;,
1668 ],
1669 },
1670 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1671 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1672 },
1673 &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.
1674 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1675 { # The URL-level breakdown for the download size.
1676 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1677 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1678 },
1679 ],
1680 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1681 },
1682 &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.
1683 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1684 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1685 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1686 },
1687 },
1688 ],
1689 },
1690 ],
1691 },
1692 &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.
1693 42,
1694 ],
1695 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
1696 &quot;A String&quot;,
1697 ],
1698 &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.
1699 42,
1700 ],
1701 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
1702 { # Detected advertiser and brand information.
1703 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
1704 &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.
1705 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
1706 &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.
1707 },
1708 ],
1709 &quot;networkPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
1710 &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.
1711 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1712 { # 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.
1713 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1714 &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
1715 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1716 { # Evidence associated with a policy topic entry.
1717 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1718 &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.
1719 &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.
1720 &quot;A String&quot;,
1721 ],
1722 },
1723 &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.
1724 &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.
1725 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1726 { # The number of HTTP calls made to the given domain.
1727 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1728 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1729 },
1730 ],
1731 },
1732 &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.
1733 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1734 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1735 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1736 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1737 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1738 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1739 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1740 &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.
1741 },
1742 &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.
1743 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1744 &quot;A String&quot;,
1745 ],
1746 },
1747 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1748 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1749 },
1750 &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.
1751 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1752 { # The URL-level breakdown for the download size.
1753 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1754 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1755 },
1756 ],
1757 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1758 },
1759 &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.
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 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1763 },
1764 },
1765 ],
1766 },
1767 ],
1768 },
1769 },
1770 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001771 &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.
1772 &quot;A String&quot;,
1773 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001774 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001775 &quot;A String&quot;,
1776 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001777 &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.
1778 &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.
1779 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
1780 &quot;A String&quot;,
1781 ],
1782 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
1783 &quot;A String&quot;,
1784 ],
1785 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
1786 &quot;A String&quot;,
1787 ],
1788 &quot;native&quot;: { # Native content for a creative. # A native creative.
1789 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
1790 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
1791 &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.
1792 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1793 &quot;height&quot;: 42, # Image height in pixels.
1794 &quot;width&quot;: 42, # Image width in pixels.
1795 },
1796 &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.
1797 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1798 &quot;height&quot;: 42, # Image height in pixels.
1799 &quot;width&quot;: 42, # Image width in pixels.
1800 },
1801 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
1802 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
1803 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
1804 &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.
1805 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
1806 &quot;height&quot;: 42, # Image height in pixels.
1807 &quot;width&quot;: 42, # Image width in pixels.
1808 },
1809 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
1810 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
1811 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
1812 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
1813 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001814 },
1815 ],
1816 }</pre>
1817</div>
1818
1819<div class="method">
1820 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
1821 <pre>Retrieves the next page of results.
1822
1823Args:
1824 previous_request: The request for the previous page. (required)
1825 previous_response: The response from the request for the previous page. (required)
1826
1827Returns:
1828 A request object that you can call &#x27;execute()&#x27; on to request the next
1829 page. Returns None if there are no more items in the collection.
1830 </pre>
1831</div>
1832
1833<div class="method">
1834 <code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code>
1835 <pre>Updates a creative.
1836
1837Args:
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001838 name: string, Output only. 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 -07001839 body: object, The request body.
1840 The object takes the form of:
1841
1842{ # A creative and its classification data.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001843 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
1844 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
1845 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
1846 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001847 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001848 &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.
1849 &quot;name&quot;: &quot;A String&quot;, # Output only. 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.
1850 &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 -07001851 &quot;A String&quot;,
1852 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001853 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001854 &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.
1855 42,
1856 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001857 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001858 &quot;video&quot;: { # Video content for a creative. # A video creative.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001859 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001860 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
1861 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001862 &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.
1863 { # Information about each media file in the VAST.
1864 &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.
1865 &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.
1866 },
1867 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001868 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
1869 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001870 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001871 &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.
1872 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001873 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001874 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001875 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
1876 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
1877 &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.
1878 &quot;dealsPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding on Programmatic Guaranteed and Preferred Deals (outside of Russia and China).
1879 &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.
1880 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1881 { # 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.
1882 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1883 &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
1884 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1885 { # Evidence associated with a policy topic entry.
1886 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1887 &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.
1888 &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.
1889 &quot;A String&quot;,
1890 ],
1891 },
1892 &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.
1893 &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.
1894 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1895 { # The number of HTTP calls made to the given domain.
1896 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1897 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1898 },
1899 ],
1900 },
1901 &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.
1902 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1903 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1904 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1905 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1906 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1907 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1908 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1909 &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.
1910 },
1911 &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.
1912 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1913 &quot;A String&quot;,
1914 ],
1915 },
1916 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1917 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1918 },
1919 &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.
1920 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1921 { # The URL-level breakdown for the download size.
1922 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1923 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1924 },
1925 ],
1926 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1927 },
1928 &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.
1929 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
1930 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
1931 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
1932 },
1933 },
1934 ],
1935 },
1936 ],
1937 },
1938 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
1939 &quot;A String&quot;,
1940 ],
1941 &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.
1942 &quot;A String&quot;,
1943 ],
1944 &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.
1945 42,
1946 ],
1947 &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.
1948 &quot;A String&quot;,
1949 ],
1950 &quot;russiaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in Russia. When approved or disapproved, this 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.
1951 &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.
1952 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
1953 { # 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.
1954 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
1955 &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
1956 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
1957 { # Evidence associated with a policy topic entry.
1958 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
1959 &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.
1960 &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.
1961 &quot;A String&quot;,
1962 ],
1963 },
1964 &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.
1965 &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.
1966 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
1967 { # The number of HTTP calls made to the given domain.
1968 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
1969 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
1970 },
1971 ],
1972 },
1973 &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.
1974 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
1975 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
1976 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
1977 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
1978 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
1979 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
1980 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
1981 &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.
1982 },
1983 &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.
1984 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
1985 &quot;A String&quot;,
1986 ],
1987 },
1988 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
1989 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
1990 },
1991 &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.
1992 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
1993 { # The URL-level breakdown for the download size.
1994 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
1995 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
1996 },
1997 ],
1998 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
1999 },
2000 &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.
2001 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2002 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2003 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2004 },
2005 },
2006 ],
2007 },
2008 ],
2009 },
2010 &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.
2011 &quot;chinaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in China. When approved or disapproved, this 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.
2012 &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.
2013 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2014 { # 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.
2015 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2016 &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
2017 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2018 { # Evidence associated with a policy topic entry.
2019 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2020 &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.
2021 &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.
2022 &quot;A String&quot;,
2023 ],
2024 },
2025 &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.
2026 &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.
2027 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2028 { # The number of HTTP calls made to the given domain.
2029 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2030 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2031 },
2032 ],
2033 },
2034 &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.
2035 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2036 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2037 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2038 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2039 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2040 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2041 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2042 &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.
2043 },
2044 &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.
2045 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2046 &quot;A String&quot;,
2047 ],
2048 },
2049 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2050 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2051 },
2052 &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.
2053 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2054 { # The URL-level breakdown for the download size.
2055 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2056 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2057 },
2058 ],
2059 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2060 },
2061 &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.
2062 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2063 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2064 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2065 },
2066 },
2067 ],
2068 },
2069 ],
2070 },
2071 &quot;platformPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in Open Bidding (outside of Russia and China). For the list of platform policies, see: https://support.google.com/platformspolicy/answer/3013851.
2072 &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.
2073 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2074 { # 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.
2075 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2076 &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
2077 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2078 { # Evidence associated with a policy topic entry.
2079 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2080 &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.
2081 &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.
2082 &quot;A String&quot;,
2083 ],
2084 },
2085 &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.
2086 &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.
2087 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2088 { # The number of HTTP calls made to the given domain.
2089 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2090 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2091 },
2092 ],
2093 },
2094 &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.
2095 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2096 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2097 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2098 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2099 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2100 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2101 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2102 &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.
2103 },
2104 &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.
2105 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2106 &quot;A String&quot;,
2107 ],
2108 },
2109 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2110 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2111 },
2112 &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.
2113 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2114 { # The URL-level breakdown for the download size.
2115 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2116 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2117 },
2118 ],
2119 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2120 },
2121 &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.
2122 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2123 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2124 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2125 },
2126 },
2127 ],
2128 },
2129 ],
2130 },
2131 &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.
2132 42,
2133 ],
2134 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
2135 &quot;A String&quot;,
2136 ],
2137 &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.
2138 42,
2139 ],
2140 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
2141 { # Detected advertiser and brand information.
2142 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
2143 &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.
2144 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
2145 &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.
2146 },
2147 ],
2148 &quot;networkPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
2149 &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.
2150 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2151 { # 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.
2152 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2153 &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
2154 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2155 { # Evidence associated with a policy topic entry.
2156 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2157 &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.
2158 &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.
2159 &quot;A String&quot;,
2160 ],
2161 },
2162 &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.
2163 &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.
2164 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2165 { # The number of HTTP calls made to the given domain.
2166 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2167 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2168 },
2169 ],
2170 },
2171 &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.
2172 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2173 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2174 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2175 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2176 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2177 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2178 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2179 &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.
2180 },
2181 &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.
2182 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2183 &quot;A String&quot;,
2184 ],
2185 },
2186 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2187 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2188 },
2189 &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.
2190 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2191 { # The URL-level breakdown for the download size.
2192 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2193 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2194 },
2195 ],
2196 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2197 },
2198 &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.
2199 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2200 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2201 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2202 },
2203 },
2204 ],
2205 },
2206 ],
2207 },
2208 },
2209 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002210 &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.
2211 &quot;A String&quot;,
2212 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002213 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002214 &quot;A String&quot;,
2215 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002216 &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.
2217 &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.
2218 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
2219 &quot;A String&quot;,
2220 ],
2221 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
2222 &quot;A String&quot;,
2223 ],
2224 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
2225 &quot;A String&quot;,
2226 ],
2227 &quot;native&quot;: { # Native content for a creative. # A native creative.
2228 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
2229 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
2230 &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.
2231 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
2232 &quot;height&quot;: 42, # Image height in pixels.
2233 &quot;width&quot;: 42, # Image width in pixels.
2234 },
2235 &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.
2236 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
2237 &quot;height&quot;: 42, # Image height in pixels.
2238 &quot;width&quot;: 42, # Image width in pixels.
2239 },
2240 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
2241 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
2242 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
2243 &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.
2244 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
2245 &quot;height&quot;: 42, # Image height in pixels.
2246 &quot;width&quot;: 42, # Image width in pixels.
2247 },
2248 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
2249 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
2250 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
2251 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
2252 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002253}
2254
2255 updateMask: string, Field mask to use for partial in-place updates.
2256 x__xgafv: string, V1 error format.
2257 Allowed values
2258 1 - v1 error format
2259 2 - v2 error format
2260
2261Returns:
2262 An object of the form:
2263
2264 { # A creative and its classification data.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002265 &quot;html&quot;: { # HTML content for a creative. # An HTML creative.
2266 &quot;width&quot;: 42, # The width of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
2267 &quot;snippet&quot;: &quot;A String&quot;, # The HTML snippet that displays the ad when inserted in the web page.
2268 &quot;height&quot;: 42, # The height of the HTML snippet in pixels. Can be used to filter the response of the creatives.list method.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002269 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002270 &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.
2271 &quot;name&quot;: &quot;A String&quot;, # Output only. 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.
2272 &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 -07002273 &quot;A String&quot;,
2274 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002275 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002276 &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.
2277 42,
2278 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002279 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002280 &quot;video&quot;: { # Video content for a creative. # A video creative.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002281 &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.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002282 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a video ad.
2283 &quot;videoMetadata&quot;: { # Video metadata for a creative. # Output only. Video metadata.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002284 &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.
2285 { # Information about each media file in the VAST.
2286 &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.
2287 &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.
2288 },
2289 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002290 &quot;duration&quot;: &quot;A String&quot;, # The duration of the ad. Can be used to filter the response of the creatives.list method.
2291 &quot;isValidVast&quot;: True or False, # Is this a valid VAST ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002292 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002293 &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.
2294 &quot;isVpaid&quot;: True or False, # Is this a VPAID ad? Can be used to filter the response of the creatives.list method.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002295 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002296 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002297 &quot;adChoicesDestinationUrl&quot;: &quot;A String&quot;, # The link to AdChoices destination page. This is only supported for native ads.
2298 &quot;agencyId&quot;: &quot;A String&quot;, # The agency ID for this creative.
2299 &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.
2300 &quot;dealsPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding on Programmatic Guaranteed and Preferred Deals (outside of Russia and China).
2301 &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.
2302 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2303 { # 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.
2304 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2305 &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
2306 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2307 { # Evidence associated with a policy topic entry.
2308 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2309 &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.
2310 &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.
2311 &quot;A String&quot;,
2312 ],
2313 },
2314 &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.
2315 &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.
2316 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2317 { # The number of HTTP calls made to the given domain.
2318 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2319 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2320 },
2321 ],
2322 },
2323 &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.
2324 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2325 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2326 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2327 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2328 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2329 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2330 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2331 &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.
2332 },
2333 &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.
2334 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2335 &quot;A String&quot;,
2336 ],
2337 },
2338 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2339 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2340 },
2341 &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.
2342 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2343 { # The URL-level breakdown for the download size.
2344 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2345 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2346 },
2347 ],
2348 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2349 },
2350 &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.
2351 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2352 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2353 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2354 },
2355 },
2356 ],
2357 },
2358 ],
2359 },
2360 &quot;detectedClickThroughUrls&quot;: [ # The set of detected destination URLs for the creative. Can be used to filter the response of the creatives.list method.
2361 &quot;A String&quot;,
2362 ],
2363 &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.
2364 &quot;A String&quot;,
2365 ],
2366 &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.
2367 42,
2368 ],
2369 &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.
2370 &quot;A String&quot;,
2371 ],
2372 &quot;russiaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in Russia. When approved or disapproved, this 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.
2373 &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.
2374 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2375 { # 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.
2376 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2377 &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
2378 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2379 { # Evidence associated with a policy topic entry.
2380 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2381 &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.
2382 &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.
2383 &quot;A String&quot;,
2384 ],
2385 },
2386 &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.
2387 &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.
2388 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2389 { # The number of HTTP calls made to the given domain.
2390 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2391 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2392 },
2393 ],
2394 },
2395 &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.
2396 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2397 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2398 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2399 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2400 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2401 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2402 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2403 &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.
2404 },
2405 &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.
2406 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2407 &quot;A String&quot;,
2408 ],
2409 },
2410 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2411 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2412 },
2413 &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.
2414 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2415 { # The URL-level breakdown for the download size.
2416 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2417 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2418 },
2419 ],
2420 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2421 },
2422 &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.
2423 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2424 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2425 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2426 },
2427 },
2428 ],
2429 },
2430 ],
2431 },
2432 &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.
2433 &quot;chinaPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # The policy compliance of this creative in China. When approved or disapproved, this 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.
2434 &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.
2435 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2436 { # 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.
2437 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2438 &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
2439 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2440 { # Evidence associated with a policy topic entry.
2441 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2442 &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.
2443 &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.
2444 &quot;A String&quot;,
2445 ],
2446 },
2447 &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.
2448 &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.
2449 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2450 { # The number of HTTP calls made to the given domain.
2451 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2452 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2453 },
2454 ],
2455 },
2456 &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.
2457 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2458 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2459 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2460 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2461 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2462 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2463 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2464 &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.
2465 },
2466 &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.
2467 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2468 &quot;A String&quot;,
2469 ],
2470 },
2471 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2472 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2473 },
2474 &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.
2475 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2476 { # The URL-level breakdown for the download size.
2477 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2478 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2479 },
2480 ],
2481 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2482 },
2483 &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.
2484 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2485 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2486 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2487 },
2488 },
2489 ],
2490 },
2491 ],
2492 },
2493 &quot;platformPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in Open Bidding (outside of Russia and China). For the list of platform policies, see: https://support.google.com/platformspolicy/answer/3013851.
2494 &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.
2495 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2496 { # 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.
2497 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2498 &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
2499 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2500 { # Evidence associated with a policy topic entry.
2501 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2502 &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.
2503 &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.
2504 &quot;A String&quot;,
2505 ],
2506 },
2507 &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.
2508 &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.
2509 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2510 { # The number of HTTP calls made to the given domain.
2511 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2512 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2513 },
2514 ],
2515 },
2516 &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.
2517 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2518 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2519 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2520 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2521 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2522 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2523 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2524 &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.
2525 },
2526 &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.
2527 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2528 &quot;A String&quot;,
2529 ],
2530 },
2531 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2532 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2533 },
2534 &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.
2535 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2536 { # The URL-level breakdown for the download size.
2537 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2538 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2539 },
2540 ],
2541 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2542 },
2543 &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.
2544 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2545 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2546 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2547 },
2548 },
2549 ],
2550 },
2551 ],
2552 },
2553 &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.
2554 42,
2555 ],
2556 &quot;detectedDomains&quot;: [ # The detected domains for this creative.
2557 &quot;A String&quot;,
2558 ],
2559 &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.
2560 42,
2561 ],
2562 &quot;detectedAdvertisers&quot;: [ # Detected advertisers and brands.
2563 { # Detected advertiser and brand information.
2564 &quot;brandName&quot;: &quot;A String&quot;, # Brand name. Can be used to filter the response of the creatives.list method.
2565 &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.
2566 &quot;advertiserName&quot;: &quot;A String&quot;, # Advertiser name. Can be used to filter the response of the creatives.list method.
2567 &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.
2568 },
2569 ],
2570 &quot;networkPolicyCompliance&quot;: { # Policy compliance of the creative for a transaction type or a region. # Policy compliance of this creative when bidding in open auction, private auction, or auction packages (outside of Russia and China).
2571 &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.
2572 &quot;topics&quot;: [ # Topics related to the policy compliance for this transaction type (e.g., open auction, deals) or region (e.g., China, Russia). Topics may be present only if status is DISAPPROVED.
2573 { # 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.
2574 &quot;helpCenterUrl&quot;: &quot;A String&quot;, # URL of the help center article describing this policy topic.
2575 &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
2576 &quot;evidences&quot;: [ # Pieces of evidence associated with this policy topic entry.
2577 { # Evidence associated with a policy topic entry.
2578 &quot;httpCookie&quot;: { # Evidence for HTTP cookie-related policy violations. # Evidence for HTTP cookie-related policy violations.
2579 &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.
2580 &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.
2581 &quot;A String&quot;,
2582 ],
2583 },
2584 &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.
2585 &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.
2586 &quot;topHttpCallDomains&quot;: [ # Breakdown of the most frequent domains called via HTTP by the creative.
2587 { # The number of HTTP calls made to the given domain.
2588 &quot;domain&quot;: &quot;A String&quot;, # The domain name.
2589 &quot;httpCallCount&quot;: 42, # Number of HTTP calls made to the domain.
2590 },
2591 ],
2592 },
2593 &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.
2594 &quot;expandedUrl&quot;: &quot;A String&quot;, # The full non-working URL.
2595 &quot;dnsError&quot;: &quot;A String&quot;, # DNS lookup errors.
2596 &quot;redirectionError&quot;: &quot;A String&quot;, # HTTP redirect chain error.
2597 &quot;urlRejected&quot;: &quot;A String&quot;, # Rejected because of malformed URLs or invalid requests.
2598 &quot;httpError&quot;: 42, # HTTP error code (e.g. 404 or 5xx)
2599 &quot;lastCheckTime&quot;: &quot;A String&quot;, # Approximate time when the ad destination was last checked.
2600 &quot;platform&quot;: &quot;A String&quot;, # Platform of the non-working URL.
2601 &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.
2602 },
2603 &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.
2604 &quot;urls&quot;: [ # URLs of HTTP calls made by the creative.
2605 &quot;A String&quot;,
2606 ],
2607 },
2608 &quot;destinationUrl&quot;: { # The full landing page URL of the destination. # URL of the actual landing page.
2609 &quot;destinationUrl&quot;: &quot;A String&quot;, # The full landing page URL of the destination.
2610 },
2611 &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.
2612 &quot;topUrlDownloadSizeBreakdowns&quot;: [ # Download size broken down by URLs with the top download size.
2613 { # The URL-level breakdown for the download size.
2614 &quot;downloadSizeKb&quot;: 42, # Download size of the URL in kilobytes.
2615 &quot;normalizedUrl&quot;: &quot;A String&quot;, # The normalized URL with query parameters and fragment removed.
2616 },
2617 ],
2618 &quot;totalDownloadSizeKb&quot;: 42, # Total download size (in kilobytes) for all the resources in the creative.
2619 },
2620 &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.
2621 &quot;crawlTime&quot;: &quot;A String&quot;, # Approximate time of the crawl.
2622 &quot;reason&quot;: &quot;A String&quot;, # Reason of destination not crawlable.
2623 &quot;crawledUrl&quot;: &quot;A String&quot;, # Destination URL that was attempted to be crawled.
2624 },
2625 },
2626 ],
2627 },
2628 ],
2629 },
2630 },
2631 &quot;apiUpdateTime&quot;: &quot;A String&quot;, # Output only. The last update timestamp of the creative via API.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07002632 &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.
2633 &quot;A String&quot;,
2634 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002635 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002636 &quot;A String&quot;,
2637 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07002638 &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.
2639 &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.
2640 &quot;declaredClickThroughUrls&quot;: [ # The set of declared destination URLs for the creative. Can be used to filter the response of the creatives.list method.
2641 &quot;A String&quot;,
2642 ],
2643 &quot;restrictedCategories&quot;: [ # All restricted categories for the ads that may be shown from this creative.
2644 &quot;A String&quot;,
2645 ],
2646 &quot;impressionTrackingUrls&quot;: [ # The set of URLs to be called to record an impression.
2647 &quot;A String&quot;,
2648 ],
2649 &quot;native&quot;: { # Native content for a creative. # A native creative.
2650 &quot;videoUrl&quot;: &quot;A String&quot;, # The URL to fetch a native video ad.
2651 &quot;advertiserName&quot;: &quot;A String&quot;, # The name of the advertiser or sponsor, to be displayed in the ad creative.
2652 &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.
2653 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
2654 &quot;height&quot;: 42, # Image height in pixels.
2655 &quot;width&quot;: 42, # Image width in pixels.
2656 },
2657 &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.
2658 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
2659 &quot;height&quot;: 42, # Image height in pixels.
2660 &quot;width&quot;: 42, # Image width in pixels.
2661 },
2662 &quot;body&quot;: &quot;A String&quot;, # A long description of the ad.
2663 &quot;priceDisplayText&quot;: &quot;A String&quot;, # The price of the promoted app including currency info.
2664 &quot;starRating&quot;: 3.14, # The app rating in the app store. Must be in the range [0-5].
2665 &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.
2666 &quot;url&quot;: &quot;A String&quot;, # The URL of the image.
2667 &quot;height&quot;: 42, # Image height in pixels.
2668 &quot;width&quot;: 42, # Image width in pixels.
2669 },
2670 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # The URL to use for click tracking.
2671 &quot;clickLinkUrl&quot;: &quot;A String&quot;, # The URL that the browser/SDK will load when the user clicks the ad.
2672 &quot;headline&quot;: &quot;A String&quot;, # A short title for the ad.
2673 &quot;callToAction&quot;: &quot;A String&quot;, # A label for the button that the user is supposed to click.
2674 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07002675 }</pre>
2676</div>
2677
2678</body></html>