blob: 1158e5701130b38e47e051b8ded76a2d35b1c465 [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -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="displayvideo_v1.html">Display & Video 360 API</a> . <a href="displayvideo_v1.advertisers.html">advertisers</a> . <a href="displayvideo_v1.advertisers.creatives.html">creatives</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#create">create(advertiserId, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070079<p class="firstline">Creates a new creative. Returns the newly created creative if successful.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070080<p class="toc_element">
81 <code><a href="#delete">delete(advertiserId, creativeId, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070082<p class="firstline">Deletes a creative. Returns error code `NOT_FOUND` if the creative does not exist. The creative should be archived first, i.e. set entity_status to `ENTITY_STATUS_ARCHIVED`, before it can be deleted.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070083<p class="toc_element">
84 <code><a href="#get">get(advertiserId, creativeId, x__xgafv=None)</a></code></p>
85<p class="firstline">Gets a creative.</p>
86<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070087 <code><a href="#list">list(advertiserId, filter=None, pageToken=None, pageSize=None, orderBy=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Lists creatives in an advertiser. The order is defined by the order_by parameter. If a filter by entity_status is not specified, creatives with `ENTITY_STATUS_ARCHIVED` will not be included in the results.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070089<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(advertiserId, creativeId, body=None, updateMask=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070094<p class="firstline">Updates an existing creative. Returns the updated creative if successful.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070095<h3>Method Details</h3>
96<div class="method">
97 <code class="details" id="create">create(advertiserId, body=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070098 <pre>Creates a new creative. Returns the newly created creative if successful.
Bu Sun Kim65020912020-05-20 12:08:20 -070099
100Args:
101 advertiserId: string, Output only. The unique ID of the advertiser the creative belongs to. (required)
102 body: object, The request body.
103 The object takes the form of:
104
105{ # A single Creative.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700106 &quot;requirePingForAttribution&quot;: True or False, # Optional. Indicates that the creative will wait for a return ping for attribution. Only valid when using a Campaign Manager tracking ad with a third-party ad server parameter and the ${DC_DBM_TOKEN} macro. Optional and only valid for third-party tag creatives or third-party VAST tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700107 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700108 &quot;obaIcon&quot;: { # OBA Icon for a Creative # Specifies the OBA icon for a video creative. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO`
109 &quot;landingPageUrl&quot;: &quot;A String&quot;, # Required. The landing page URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
110 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
111 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
112 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
113 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700114 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
115 &quot;heightPixels&quot;: 42, # The height in pixels.
116 &quot;widthPixels&quot;: 42, # The width in pixels.
117 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700118 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # Required. The click tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
119 &quot;viewTrackingUrl&quot;: &quot;A String&quot;, # Required. The view tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700120 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700121 &quot;lineItemIds&quot;: [ # Output only. The IDs of the line items this creative is associated with. To associate a creative to a line item, use LineItem.creative_ids instead.
122 &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700123 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
Bu Sun Kim65020912020-05-20 12:08:20 -0700125 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
126 { # Publisher review status for the creative.
127 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
128 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
129 },
130 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700131 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
132 &quot;approvalStatus&quot;: &quot;A String&quot;, # Represents the basic approval needed for a creative to begin serving. Summary of creative_and_landing_page_review_status and content_and_policy_review_status.
133 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
134 { # Exchange review status for the creative.
135 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
136 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
137 },
138 ],
139 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
Bu Sun Kim65020912020-05-20 12:08:20 -0700140 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700141 &quot;html5Video&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires HTML5 Video support. Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
142 &quot;assets&quot;: [ # Required. Assets associated to this creative. Assets can be associated to the creative in one of following roles: * `ASSET_ROLE_UNSPECIFIED` * `ASSET_ROLE_MAIN` * `ASSET_ROLE_BACKUP` * `ASSET_ROLE_POLITE_LOAD`
143 { # Asset association for the creative.
144 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
145 &quot;asset&quot;: { # A single asset. # The associated asset.
146 &quot;mediaId&quot;: &quot;A String&quot;, # Media ID of the uploaded asset. This is a unique identifier for the asset. This ID can be passed to other API calls, e.g. CreateCreative to associate the asset with a creative.
147 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
148 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700149 },
150 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700151 &quot;thirdPartyUrls&quot;: [ # Tracking URLs from third parties to track interactions with a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO`
152 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
153 &quot;url&quot;: &quot;A String&quot;, # Tracking URL used to track the interaction. Provide a URL with optional path or query string, beginning with `https:`. For example, https://www.example.com/path
154 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
155 },
156 ],
157 &quot;companionCreativeIds&quot;: [ # The IDs of companion creatives for a video creative. You can assign existing display creatives (with image or HTML5 assets) to serve surrounding the publisher&#x27;s video player. Companions display around the video player while the video is playing and remain after the video has completed. Creatives contain additional dimensions can not be companion creatives. This field is only supported for following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO`
158 &quot;A String&quot;,
159 ],
160 &quot;jsTrackerUrl&quot;: &quot;A String&quot;, # JavaScript measurement URL from supported third-party verification providers (ComScore, DoubleVerify, IAS, Moat). HTML script tags are not supported. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700161 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700162 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
163 &quot;requireMraid&quot;: True or False, # Optional. Indicates that the creative requires MRAID (Mobile Rich Media Ad Interface Definitions system). Set this if the creative relies on mobile gestures for interactivity, such as swiping or tapping. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
164 &quot;timerEvents&quot;: [ # Timer custom events for a rich media creative. Timers track the time during which a user views and interacts with a specified part of a rich media creative. A creative can have multiple timer events, each timed independently. Leave it empty or unset for creatives containing image assets only.
165 { # Timer event of the creative.
166 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
167 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
168 },
169 ],
170 &quot;expandOnHover&quot;: True or False, # Optional. Indicates the creative will automatically expand on hover. Optional and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
171 &quot;counterEvents&quot;: [ # Counter events for a rich media creative. Counters track the number of times that a user interacts with any part of a rich media creative in a specified way (mouse-overs, mouse-outs, clicks, taps, data loading, keyboard entries, etc.). Any event that can be captured in the creative can be recorded as a counter. Leave it empty or unset for creatives containing image assets only.
172 { # Counter event of the creative.
173 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
174 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
175 },
176 ],
177 &quot;universalAdId&quot;: { # A creative identifier provided by a registry that is unique across all platforms. This is part of the VAST 4.0 standard. # Optional. An optional creative identifier provided by a registry that is unique across all platforms. Universal Ad ID is part of the VAST 4.0 standard. It can be modified after the creative is created. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700178 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700179 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
Bu Sun Kim65020912020-05-20 12:08:20 -0700180 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700181 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
182 &quot;progressOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before counting a view. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
183 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
184 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
185 },
186 &quot;dimensions&quot;: { # Dimensions. # Required. Primary dimensions of the creative. Applicable to all creative types. The value of width_pixels and height_pixels defaults to `0` when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_INTERSTITIAL` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_VIDEO`
187 &quot;heightPixels&quot;: 42, # The height in pixels.
188 &quot;widthPixels&quot;: 42, # The width in pixels.
189 },
190 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
191 &quot;notes&quot;: &quot;A String&quot;, # User notes for this creative. Must be UTF-8 encoded with a length of no more than 20,000 characters.
192 &quot;iasCampaignMonitoring&quot;: True or False, # Indicates whether Integral Ad Science (IAS) campaign monitoring is enabled. To enable this for the creative, make sure the Advertiser.creative_config.ias_client_id has been set to your IAS client ID.
193 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
194 &quot;thirdPartyTag&quot;: &quot;A String&quot;, # Optional. The original third-party tag used for the creative. Required and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
195 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
196 &quot;A String&quot;,
197 ],
198 &quot;requireHtml5&quot;: True or False, # Optional. Indicates that the creative relies on HTML5 to render properly. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
199 &quot;vastTagUrl&quot;: &quot;A String&quot;, # Optional. The URL of the VAST tag for a third-party VAST tag creative. Required and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
200 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the creative. Must be UTF-8 encoded with a maximum size of 240 bytes.
201 &quot;transcodes&quot;: [ # Output only. Audio/Video transcodes. Display &amp; Video 360 transcodes the main asset into a number of alternative versions that use different file formats or have different properties (resolution, audio bit rate, and video bit rate), each designed for specific video players or bandwidths. These transcodes give a publisher&#x27;s system more options to choose from for each impression on your video and ensures that the appropriate file serves based on the viewer’s connection and screen size. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_AUDIO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700202 { # Represents information about the transcoded audio or video file.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700203 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
204 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
205 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
206 &quot;audioSampleRateHz&quot;: &quot;A String&quot;, # The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.
207 &quot;audioBitRateKbps&quot;: &quot;A String&quot;, # The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700208 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
209 &quot;heightPixels&quot;: 42, # The height in pixels.
210 &quot;widthPixels&quot;: 42, # The width in pixels.
211 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700212 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700213 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
214 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
Bu Sun Kim65020912020-05-20 12:08:20 -0700215 },
216 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700217 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
218 &quot;skippable&quot;: True or False, # Whether the user can choose to skip a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
219 &quot;expandingDirection&quot;: &quot;A String&quot;, # Optional. Specifies the expanding direction of the creative. Required and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
220 &quot;cmTrackingAd&quot;: { # A Campaign Manager tracking ad. # The Campaign Manager tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager and third-party ad serving: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` Output only for other cases.
Bu Sun Kim65020912020-05-20 12:08:20 -0700221 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager tracking Ad.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700222 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager tracking Ad.
Bu Sun Kim65020912020-05-20 12:08:20 -0700223 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager tracking Ad.
224 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700225 &quot;entityStatus&quot;: &quot;A String&quot;, # Required. Controls whether or not the creative can serve. Accepted values are: * `ENTITY_STATUS_ACTIVE` * `ENTITY_STATUS_ARCHIVED` * `ENTITY_STATUS_PAUSED`
226 &quot;exitEvents&quot;: [ # Required. Exit events for this creative. An exit (also known as a click tag) is any area in your creative that someone can click or tap to open an advertiser&#x27;s landing page. Every creative must include at least one exit. You can add an exit to your creative in any of the following ways: * Use Google Web Designer&#x27;s tap area. * Define a JavaScript variable called &quot;clickTag&quot;. * Use the Enabler (Enabler.exit()) to track exits in rich media formats.
227 { # Exit event of the creative.
228 &quot;url&quot;: &quot;A String&quot;, # Required. The click through URL of the exit event. This is required when type is: * `EXIT_EVENT_TYPE_DEFAULT` * `EXIT_EVENT_TYPE_BACKUP`
229 &quot;name&quot;: &quot;A String&quot;, # The name of the click tag of the exit event. The name must be unique within one creative. Leave it empty or unset for creatives containing image assets only.
230 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
231 &quot;reportingName&quot;: &quot;A String&quot;, # The name used to identify this event in reports. Leave it empty or unset for creatives containing image assets only.
232 },
233 ],
234 &quot;additionalDimensions&quot;: [ # Additional dimensions. Applicable when creative_type is one of: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_LIGHTBOX` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_PUBLISHER_HOSTED` If this field is specified, width_pixels and height_pixels are both required and must be greater than or equal to 0.
235 { # Dimensions.
236 &quot;heightPixels&quot;: 42, # The height in pixels.
237 &quot;widthPixels&quot;: 42, # The width in pixels.
238 },
239 ],
240 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
241 &quot;integrationCode&quot;: &quot;A String&quot;, # ID information used to link this creative to an external system. Must be UTF-8 encoded with a length of no more than 10,000 characters.
242 &quot;vpaid&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires VPAID (Digital Video Player-Ad Interface). Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
243 &quot;trackerUrls&quot;: [ # Tracking URLs for analytics providers or third-party ad technology vendors. The URLs must start with https (except on inventory that doesn&#x27;t require SSL compliance). If using macros in your URL, use only macros supported by Display &amp; Video 360. Standard URLs only, no IMG or SCRIPT tags. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
244 &quot;A String&quot;,
245 ],
246 &quot;mediaDuration&quot;: &quot;A String&quot;, # Output only. Media duration of the creative. Applicable when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_PUBLISHER_HOSTED`
247 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
248 &quot;skipOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before the skip button appears. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
249 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
250 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
Bu Sun Kim65020912020-05-20 12:08:20 -0700251 },
252 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
Bu Sun Kim65020912020-05-20 12:08:20 -0700253}
254
255 x__xgafv: string, V1 error format.
256 Allowed values
257 1 - v1 error format
258 2 - v2 error format
259
260Returns:
261 An object of the form:
262
263 { # A single Creative.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700264 &quot;requirePingForAttribution&quot;: True or False, # Optional. Indicates that the creative will wait for a return ping for attribution. Only valid when using a Campaign Manager tracking ad with a third-party ad server parameter and the ${DC_DBM_TOKEN} macro. Optional and only valid for third-party tag creatives or third-party VAST tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700265 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700266 &quot;obaIcon&quot;: { # OBA Icon for a Creative # Specifies the OBA icon for a video creative. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO`
267 &quot;landingPageUrl&quot;: &quot;A String&quot;, # Required. The landing page URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
268 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
269 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
270 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
271 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700272 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
273 &quot;heightPixels&quot;: 42, # The height in pixels.
274 &quot;widthPixels&quot;: 42, # The width in pixels.
275 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700276 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # Required. The click tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
277 &quot;viewTrackingUrl&quot;: &quot;A String&quot;, # Required. The view tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700278 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700279 &quot;lineItemIds&quot;: [ # Output only. The IDs of the line items this creative is associated with. To associate a creative to a line item, use LineItem.creative_ids instead.
280 &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700281 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700282 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
Bu Sun Kim65020912020-05-20 12:08:20 -0700283 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
284 { # Publisher review status for the creative.
285 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
286 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
287 },
288 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700289 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
290 &quot;approvalStatus&quot;: &quot;A String&quot;, # Represents the basic approval needed for a creative to begin serving. Summary of creative_and_landing_page_review_status and content_and_policy_review_status.
291 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
292 { # Exchange review status for the creative.
293 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
294 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
295 },
296 ],
297 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
Bu Sun Kim65020912020-05-20 12:08:20 -0700298 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700299 &quot;html5Video&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires HTML5 Video support. Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
300 &quot;assets&quot;: [ # Required. Assets associated to this creative. Assets can be associated to the creative in one of following roles: * `ASSET_ROLE_UNSPECIFIED` * `ASSET_ROLE_MAIN` * `ASSET_ROLE_BACKUP` * `ASSET_ROLE_POLITE_LOAD`
301 { # Asset association for the creative.
302 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
303 &quot;asset&quot;: { # A single asset. # The associated asset.
304 &quot;mediaId&quot;: &quot;A String&quot;, # Media ID of the uploaded asset. This is a unique identifier for the asset. This ID can be passed to other API calls, e.g. CreateCreative to associate the asset with a creative.
305 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
306 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700307 },
308 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700309 &quot;thirdPartyUrls&quot;: [ # Tracking URLs from third parties to track interactions with a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO`
310 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
311 &quot;url&quot;: &quot;A String&quot;, # Tracking URL used to track the interaction. Provide a URL with optional path or query string, beginning with `https:`. For example, https://www.example.com/path
312 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
313 },
314 ],
315 &quot;companionCreativeIds&quot;: [ # The IDs of companion creatives for a video creative. You can assign existing display creatives (with image or HTML5 assets) to serve surrounding the publisher&#x27;s video player. Companions display around the video player while the video is playing and remain after the video has completed. Creatives contain additional dimensions can not be companion creatives. This field is only supported for following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO`
316 &quot;A String&quot;,
317 ],
318 &quot;jsTrackerUrl&quot;: &quot;A String&quot;, # JavaScript measurement URL from supported third-party verification providers (ComScore, DoubleVerify, IAS, Moat). HTML script tags are not supported. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700319 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700320 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
321 &quot;requireMraid&quot;: True or False, # Optional. Indicates that the creative requires MRAID (Mobile Rich Media Ad Interface Definitions system). Set this if the creative relies on mobile gestures for interactivity, such as swiping or tapping. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
322 &quot;timerEvents&quot;: [ # Timer custom events for a rich media creative. Timers track the time during which a user views and interacts with a specified part of a rich media creative. A creative can have multiple timer events, each timed independently. Leave it empty or unset for creatives containing image assets only.
323 { # Timer event of the creative.
324 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
325 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
326 },
327 ],
328 &quot;expandOnHover&quot;: True or False, # Optional. Indicates the creative will automatically expand on hover. Optional and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
329 &quot;counterEvents&quot;: [ # Counter events for a rich media creative. Counters track the number of times that a user interacts with any part of a rich media creative in a specified way (mouse-overs, mouse-outs, clicks, taps, data loading, keyboard entries, etc.). Any event that can be captured in the creative can be recorded as a counter. Leave it empty or unset for creatives containing image assets only.
330 { # Counter event of the creative.
331 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
332 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
333 },
334 ],
335 &quot;universalAdId&quot;: { # A creative identifier provided by a registry that is unique across all platforms. This is part of the VAST 4.0 standard. # Optional. An optional creative identifier provided by a registry that is unique across all platforms. Universal Ad ID is part of the VAST 4.0 standard. It can be modified after the creative is created. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700336 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700337 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
Bu Sun Kim65020912020-05-20 12:08:20 -0700338 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700339 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
340 &quot;progressOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before counting a view. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
341 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
342 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
343 },
344 &quot;dimensions&quot;: { # Dimensions. # Required. Primary dimensions of the creative. Applicable to all creative types. The value of width_pixels and height_pixels defaults to `0` when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_INTERSTITIAL` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_VIDEO`
345 &quot;heightPixels&quot;: 42, # The height in pixels.
346 &quot;widthPixels&quot;: 42, # The width in pixels.
347 },
348 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
349 &quot;notes&quot;: &quot;A String&quot;, # User notes for this creative. Must be UTF-8 encoded with a length of no more than 20,000 characters.
350 &quot;iasCampaignMonitoring&quot;: True or False, # Indicates whether Integral Ad Science (IAS) campaign monitoring is enabled. To enable this for the creative, make sure the Advertiser.creative_config.ias_client_id has been set to your IAS client ID.
351 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
352 &quot;thirdPartyTag&quot;: &quot;A String&quot;, # Optional. The original third-party tag used for the creative. Required and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
353 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
354 &quot;A String&quot;,
355 ],
356 &quot;requireHtml5&quot;: True or False, # Optional. Indicates that the creative relies on HTML5 to render properly. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
357 &quot;vastTagUrl&quot;: &quot;A String&quot;, # Optional. The URL of the VAST tag for a third-party VAST tag creative. Required and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
358 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the creative. Must be UTF-8 encoded with a maximum size of 240 bytes.
359 &quot;transcodes&quot;: [ # Output only. Audio/Video transcodes. Display &amp; Video 360 transcodes the main asset into a number of alternative versions that use different file formats or have different properties (resolution, audio bit rate, and video bit rate), each designed for specific video players or bandwidths. These transcodes give a publisher&#x27;s system more options to choose from for each impression on your video and ensures that the appropriate file serves based on the viewer’s connection and screen size. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_AUDIO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700360 { # Represents information about the transcoded audio or video file.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700361 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
362 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
363 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
364 &quot;audioSampleRateHz&quot;: &quot;A String&quot;, # The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.
365 &quot;audioBitRateKbps&quot;: &quot;A String&quot;, # The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700366 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
367 &quot;heightPixels&quot;: 42, # The height in pixels.
368 &quot;widthPixels&quot;: 42, # The width in pixels.
369 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700370 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700371 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
372 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
Bu Sun Kim65020912020-05-20 12:08:20 -0700373 },
374 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700375 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
376 &quot;skippable&quot;: True or False, # Whether the user can choose to skip a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
377 &quot;expandingDirection&quot;: &quot;A String&quot;, # Optional. Specifies the expanding direction of the creative. Required and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
378 &quot;cmTrackingAd&quot;: { # A Campaign Manager tracking ad. # The Campaign Manager tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager and third-party ad serving: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` Output only for other cases.
Bu Sun Kim65020912020-05-20 12:08:20 -0700379 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager tracking Ad.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700380 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager tracking Ad.
Bu Sun Kim65020912020-05-20 12:08:20 -0700381 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager tracking Ad.
382 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700383 &quot;entityStatus&quot;: &quot;A String&quot;, # Required. Controls whether or not the creative can serve. Accepted values are: * `ENTITY_STATUS_ACTIVE` * `ENTITY_STATUS_ARCHIVED` * `ENTITY_STATUS_PAUSED`
384 &quot;exitEvents&quot;: [ # Required. Exit events for this creative. An exit (also known as a click tag) is any area in your creative that someone can click or tap to open an advertiser&#x27;s landing page. Every creative must include at least one exit. You can add an exit to your creative in any of the following ways: * Use Google Web Designer&#x27;s tap area. * Define a JavaScript variable called &quot;clickTag&quot;. * Use the Enabler (Enabler.exit()) to track exits in rich media formats.
385 { # Exit event of the creative.
386 &quot;url&quot;: &quot;A String&quot;, # Required. The click through URL of the exit event. This is required when type is: * `EXIT_EVENT_TYPE_DEFAULT` * `EXIT_EVENT_TYPE_BACKUP`
387 &quot;name&quot;: &quot;A String&quot;, # The name of the click tag of the exit event. The name must be unique within one creative. Leave it empty or unset for creatives containing image assets only.
388 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
389 &quot;reportingName&quot;: &quot;A String&quot;, # The name used to identify this event in reports. Leave it empty or unset for creatives containing image assets only.
390 },
391 ],
392 &quot;additionalDimensions&quot;: [ # Additional dimensions. Applicable when creative_type is one of: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_LIGHTBOX` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_PUBLISHER_HOSTED` If this field is specified, width_pixels and height_pixels are both required and must be greater than or equal to 0.
393 { # Dimensions.
394 &quot;heightPixels&quot;: 42, # The height in pixels.
395 &quot;widthPixels&quot;: 42, # The width in pixels.
396 },
397 ],
398 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
399 &quot;integrationCode&quot;: &quot;A String&quot;, # ID information used to link this creative to an external system. Must be UTF-8 encoded with a length of no more than 10,000 characters.
400 &quot;vpaid&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires VPAID (Digital Video Player-Ad Interface). Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
401 &quot;trackerUrls&quot;: [ # Tracking URLs for analytics providers or third-party ad technology vendors. The URLs must start with https (except on inventory that doesn&#x27;t require SSL compliance). If using macros in your URL, use only macros supported by Display &amp; Video 360. Standard URLs only, no IMG or SCRIPT tags. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
402 &quot;A String&quot;,
403 ],
404 &quot;mediaDuration&quot;: &quot;A String&quot;, # Output only. Media duration of the creative. Applicable when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_PUBLISHER_HOSTED`
405 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
406 &quot;skipOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before the skip button appears. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
407 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
408 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
Bu Sun Kim65020912020-05-20 12:08:20 -0700409 },
410 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
Bu Sun Kim65020912020-05-20 12:08:20 -0700411 }</pre>
412</div>
413
414<div class="method">
415 <code class="details" id="delete">delete(advertiserId, creativeId, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700416 <pre>Deletes a creative. Returns error code `NOT_FOUND` if the creative does not exist. The creative should be archived first, i.e. set entity_status to `ENTITY_STATUS_ARCHIVED`, before it can be deleted.
Bu Sun Kim65020912020-05-20 12:08:20 -0700417
418Args:
419 advertiserId: string, The ID of the advertiser this creative belongs to. (required)
420 creativeId: string, The ID of the creative to be deleted. (required)
421 x__xgafv: string, V1 error format.
422 Allowed values
423 1 - v1 error format
424 2 - v2 error format
425
426Returns:
427 An object of the form:
428
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700429 { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700430 }</pre>
431</div>
432
433<div class="method">
434 <code class="details" id="get">get(advertiserId, creativeId, x__xgafv=None)</code>
435 <pre>Gets a creative.
436
437Args:
438 advertiserId: string, Required. The ID of the advertiser this creative belongs to. (required)
439 creativeId: string, Required. The ID of the creative to fetch. (required)
440 x__xgafv: string, V1 error format.
441 Allowed values
442 1 - v1 error format
443 2 - v2 error format
444
445Returns:
446 An object of the form:
447
448 { # A single Creative.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700449 &quot;requirePingForAttribution&quot;: True or False, # Optional. Indicates that the creative will wait for a return ping for attribution. Only valid when using a Campaign Manager tracking ad with a third-party ad server parameter and the ${DC_DBM_TOKEN} macro. Optional and only valid for third-party tag creatives or third-party VAST tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700450 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700451 &quot;obaIcon&quot;: { # OBA Icon for a Creative # Specifies the OBA icon for a video creative. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO`
452 &quot;landingPageUrl&quot;: &quot;A String&quot;, # Required. The landing page URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
453 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
454 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
455 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
456 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700457 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
458 &quot;heightPixels&quot;: 42, # The height in pixels.
459 &quot;widthPixels&quot;: 42, # The width in pixels.
460 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700461 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # Required. The click tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
462 &quot;viewTrackingUrl&quot;: &quot;A String&quot;, # Required. The view tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700463 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700464 &quot;lineItemIds&quot;: [ # Output only. The IDs of the line items this creative is associated with. To associate a creative to a line item, use LineItem.creative_ids instead.
465 &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700466 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700467 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
Bu Sun Kim65020912020-05-20 12:08:20 -0700468 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
469 { # Publisher review status for the creative.
470 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
471 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
472 },
473 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700474 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
475 &quot;approvalStatus&quot;: &quot;A String&quot;, # Represents the basic approval needed for a creative to begin serving. Summary of creative_and_landing_page_review_status and content_and_policy_review_status.
476 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
477 { # Exchange review status for the creative.
478 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
479 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
480 },
481 ],
482 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
Bu Sun Kim65020912020-05-20 12:08:20 -0700483 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700484 &quot;html5Video&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires HTML5 Video support. Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
485 &quot;assets&quot;: [ # Required. Assets associated to this creative. Assets can be associated to the creative in one of following roles: * `ASSET_ROLE_UNSPECIFIED` * `ASSET_ROLE_MAIN` * `ASSET_ROLE_BACKUP` * `ASSET_ROLE_POLITE_LOAD`
486 { # Asset association for the creative.
487 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
488 &quot;asset&quot;: { # A single asset. # The associated asset.
489 &quot;mediaId&quot;: &quot;A String&quot;, # Media ID of the uploaded asset. This is a unique identifier for the asset. This ID can be passed to other API calls, e.g. CreateCreative to associate the asset with a creative.
490 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
491 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700492 },
493 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700494 &quot;thirdPartyUrls&quot;: [ # Tracking URLs from third parties to track interactions with a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO`
495 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
496 &quot;url&quot;: &quot;A String&quot;, # Tracking URL used to track the interaction. Provide a URL with optional path or query string, beginning with `https:`. For example, https://www.example.com/path
497 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
498 },
499 ],
500 &quot;companionCreativeIds&quot;: [ # The IDs of companion creatives for a video creative. You can assign existing display creatives (with image or HTML5 assets) to serve surrounding the publisher&#x27;s video player. Companions display around the video player while the video is playing and remain after the video has completed. Creatives contain additional dimensions can not be companion creatives. This field is only supported for following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO`
501 &quot;A String&quot;,
502 ],
503 &quot;jsTrackerUrl&quot;: &quot;A String&quot;, # JavaScript measurement URL from supported third-party verification providers (ComScore, DoubleVerify, IAS, Moat). HTML script tags are not supported. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700504 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700505 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
506 &quot;requireMraid&quot;: True or False, # Optional. Indicates that the creative requires MRAID (Mobile Rich Media Ad Interface Definitions system). Set this if the creative relies on mobile gestures for interactivity, such as swiping or tapping. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
507 &quot;timerEvents&quot;: [ # Timer custom events for a rich media creative. Timers track the time during which a user views and interacts with a specified part of a rich media creative. A creative can have multiple timer events, each timed independently. Leave it empty or unset for creatives containing image assets only.
508 { # Timer event of the creative.
509 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
510 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
511 },
512 ],
513 &quot;expandOnHover&quot;: True or False, # Optional. Indicates the creative will automatically expand on hover. Optional and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
514 &quot;counterEvents&quot;: [ # Counter events for a rich media creative. Counters track the number of times that a user interacts with any part of a rich media creative in a specified way (mouse-overs, mouse-outs, clicks, taps, data loading, keyboard entries, etc.). Any event that can be captured in the creative can be recorded as a counter. Leave it empty or unset for creatives containing image assets only.
515 { # Counter event of the creative.
516 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
517 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
518 },
519 ],
520 &quot;universalAdId&quot;: { # A creative identifier provided by a registry that is unique across all platforms. This is part of the VAST 4.0 standard. # Optional. An optional creative identifier provided by a registry that is unique across all platforms. Universal Ad ID is part of the VAST 4.0 standard. It can be modified after the creative is created. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700521 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700522 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
Bu Sun Kim65020912020-05-20 12:08:20 -0700523 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700524 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
525 &quot;progressOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before counting a view. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
526 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
527 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
528 },
529 &quot;dimensions&quot;: { # Dimensions. # Required. Primary dimensions of the creative. Applicable to all creative types. The value of width_pixels and height_pixels defaults to `0` when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_INTERSTITIAL` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_VIDEO`
530 &quot;heightPixels&quot;: 42, # The height in pixels.
531 &quot;widthPixels&quot;: 42, # The width in pixels.
532 },
533 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
534 &quot;notes&quot;: &quot;A String&quot;, # User notes for this creative. Must be UTF-8 encoded with a length of no more than 20,000 characters.
535 &quot;iasCampaignMonitoring&quot;: True or False, # Indicates whether Integral Ad Science (IAS) campaign monitoring is enabled. To enable this for the creative, make sure the Advertiser.creative_config.ias_client_id has been set to your IAS client ID.
536 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
537 &quot;thirdPartyTag&quot;: &quot;A String&quot;, # Optional. The original third-party tag used for the creative. Required and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
538 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
539 &quot;A String&quot;,
540 ],
541 &quot;requireHtml5&quot;: True or False, # Optional. Indicates that the creative relies on HTML5 to render properly. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
542 &quot;vastTagUrl&quot;: &quot;A String&quot;, # Optional. The URL of the VAST tag for a third-party VAST tag creative. Required and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
543 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the creative. Must be UTF-8 encoded with a maximum size of 240 bytes.
544 &quot;transcodes&quot;: [ # Output only. Audio/Video transcodes. Display &amp; Video 360 transcodes the main asset into a number of alternative versions that use different file formats or have different properties (resolution, audio bit rate, and video bit rate), each designed for specific video players or bandwidths. These transcodes give a publisher&#x27;s system more options to choose from for each impression on your video and ensures that the appropriate file serves based on the viewer’s connection and screen size. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_AUDIO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700545 { # Represents information about the transcoded audio or video file.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700546 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
547 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
548 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
549 &quot;audioSampleRateHz&quot;: &quot;A String&quot;, # The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.
550 &quot;audioBitRateKbps&quot;: &quot;A String&quot;, # The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700551 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
552 &quot;heightPixels&quot;: 42, # The height in pixels.
553 &quot;widthPixels&quot;: 42, # The width in pixels.
554 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700555 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700556 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
557 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
Bu Sun Kim65020912020-05-20 12:08:20 -0700558 },
559 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700560 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
561 &quot;skippable&quot;: True or False, # Whether the user can choose to skip a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
562 &quot;expandingDirection&quot;: &quot;A String&quot;, # Optional. Specifies the expanding direction of the creative. Required and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
563 &quot;cmTrackingAd&quot;: { # A Campaign Manager tracking ad. # The Campaign Manager tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager and third-party ad serving: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` Output only for other cases.
Bu Sun Kim65020912020-05-20 12:08:20 -0700564 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager tracking Ad.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700565 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager tracking Ad.
Bu Sun Kim65020912020-05-20 12:08:20 -0700566 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager tracking Ad.
567 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700568 &quot;entityStatus&quot;: &quot;A String&quot;, # Required. Controls whether or not the creative can serve. Accepted values are: * `ENTITY_STATUS_ACTIVE` * `ENTITY_STATUS_ARCHIVED` * `ENTITY_STATUS_PAUSED`
569 &quot;exitEvents&quot;: [ # Required. Exit events for this creative. An exit (also known as a click tag) is any area in your creative that someone can click or tap to open an advertiser&#x27;s landing page. Every creative must include at least one exit. You can add an exit to your creative in any of the following ways: * Use Google Web Designer&#x27;s tap area. * Define a JavaScript variable called &quot;clickTag&quot;. * Use the Enabler (Enabler.exit()) to track exits in rich media formats.
570 { # Exit event of the creative.
571 &quot;url&quot;: &quot;A String&quot;, # Required. The click through URL of the exit event. This is required when type is: * `EXIT_EVENT_TYPE_DEFAULT` * `EXIT_EVENT_TYPE_BACKUP`
572 &quot;name&quot;: &quot;A String&quot;, # The name of the click tag of the exit event. The name must be unique within one creative. Leave it empty or unset for creatives containing image assets only.
573 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
574 &quot;reportingName&quot;: &quot;A String&quot;, # The name used to identify this event in reports. Leave it empty or unset for creatives containing image assets only.
575 },
576 ],
577 &quot;additionalDimensions&quot;: [ # Additional dimensions. Applicable when creative_type is one of: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_LIGHTBOX` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_PUBLISHER_HOSTED` If this field is specified, width_pixels and height_pixels are both required and must be greater than or equal to 0.
578 { # Dimensions.
579 &quot;heightPixels&quot;: 42, # The height in pixels.
580 &quot;widthPixels&quot;: 42, # The width in pixels.
581 },
582 ],
583 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
584 &quot;integrationCode&quot;: &quot;A String&quot;, # ID information used to link this creative to an external system. Must be UTF-8 encoded with a length of no more than 10,000 characters.
585 &quot;vpaid&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires VPAID (Digital Video Player-Ad Interface). Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
586 &quot;trackerUrls&quot;: [ # Tracking URLs for analytics providers or third-party ad technology vendors. The URLs must start with https (except on inventory that doesn&#x27;t require SSL compliance). If using macros in your URL, use only macros supported by Display &amp; Video 360. Standard URLs only, no IMG or SCRIPT tags. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
587 &quot;A String&quot;,
588 ],
589 &quot;mediaDuration&quot;: &quot;A String&quot;, # Output only. Media duration of the creative. Applicable when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_PUBLISHER_HOSTED`
590 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
591 &quot;skipOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before the skip button appears. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
592 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
593 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
Bu Sun Kim65020912020-05-20 12:08:20 -0700594 },
595 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
Bu Sun Kim65020912020-05-20 12:08:20 -0700596 }</pre>
597</div>
598
599<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700600 <code class="details" id="list">list(advertiserId, filter=None, pageToken=None, pageSize=None, orderBy=None, x__xgafv=None)</code>
601 <pre>Lists creatives in an advertiser. The order is defined by the order_by parameter. If a filter by entity_status is not specified, creatives with `ENTITY_STATUS_ARCHIVED` will not be included in the results.
Bu Sun Kim65020912020-05-20 12:08:20 -0700602
603Args:
604 advertiserId: string, Required. The ID of the advertiser to list creatives for. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700605 filter: string, Allows filtering by creative properties. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restriction for the same field must be combined by `OR`. * Restriction for different fields must be combined by `AND`. * Between `(` and `)` there can only be restrictions combined by `OR` for the same field. * A restriction has the form of `{field} {operator} {value}`. * The operator must be `EQUALS (=)` for the following fields: - `entityStatus` - `creativeType`. - `dimensions` - `minDuration` - `maxDuration` - `approvalStatus` - `exchangeReviewStatus` - `dynamic` - `creativeId` * The operator must be `HAS (:)` for the following fields: - `lineItemIds` * For `entityStatus`, `minDuration`, `maxDuration`, and `dynamic` there may be at most one restriction. * For `dimensions`, the value is in the form of `&quot;{width}x{height}&quot;`. * For `exchangeReviewStatus`, the value is in the form of `{exchange}-{reviewStatus}`. * For `minDuration` and `maxDuration`, the value is in the form of `&quot;{duration}s&quot;`. Only seconds are supported with millisecond granularity. * There may be multiple `lineItemIds` restrictions in order to search against multiple possible line item IDs. * There may be multiple `creativeId` restrictions in order to search against multiple possible creative IDs. Examples: * All native creatives: `creativeType=&quot;CREATIVE_TYPE_NATIVE&quot;` * All active creatives with 300x400 or 50x100 dimensions: `entityStatus=&quot;ENTITY_STATUS_ACTIVE&quot; AND (dimensions=&quot;300x400&quot; OR dimensions=&quot;50x100&quot;)` * All dynamic creatives that are approved by AdX or AppNexus, with a minimum duration of 5 seconds and 200ms. `dynamic=&quot;true&quot; AND minDuration=&quot;5.2s&quot; AND (exchangeReviewStatus=&quot;EXCHANGE_GOOGLE_AD_MANAGER-REVIEW_STATUS_APPROVED&quot; OR exchangeReviewStatus=&quot;EXCHANGE_APPNEXUS-REVIEW_STATUS_APPROVED&quot;)` * All video creatives that are associated with line item ID 1 or 2: `creativeType=&quot;CREATIVE_TYPE_VIDEO&quot; AND (lineItemIds:1 OR lineItemIds:2)` * Find creatives by multiple creative IDs: `creativeId=1 OR creativeId=2` The length of this field should be no more than 500 characters.
606 pageToken: string, A token identifying a page of results the server should return. Typically, this is the value of next_page_token returned from the previous call to `ListCreatives` method. If not specified, the first page of results will be returned.
607 pageSize: integer, Requested page size. Must be between `1` and `100`. If unspecified will default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is specified.
608 orderBy: string, Field by which to sort the list. Acceptable values are: * `creativeId` (default) * `createTime` * `mediaDuration` * `dimensions` (sorts by width first, then by height) The default sorting order is ascending. To specify descending order for a field, a suffix &quot;desc&quot; should be added to the field name. Example: `createTime desc`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700609 x__xgafv: string, V1 error format.
610 Allowed values
611 1 - v1 error format
612 2 - v2 error format
613
614Returns:
615 An object of the form:
616
617 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700618 &quot;creatives&quot;: [ # The list of creatives. This list will be absent if empty.
Bu Sun Kim65020912020-05-20 12:08:20 -0700619 { # A single Creative.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700620 &quot;requirePingForAttribution&quot;: True or False, # Optional. Indicates that the creative will wait for a return ping for attribution. Only valid when using a Campaign Manager tracking ad with a third-party ad server parameter and the ${DC_DBM_TOKEN} macro. Optional and only valid for third-party tag creatives or third-party VAST tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700621 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700622 &quot;obaIcon&quot;: { # OBA Icon for a Creative # Specifies the OBA icon for a video creative. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO`
623 &quot;landingPageUrl&quot;: &quot;A String&quot;, # Required. The landing page URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
624 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
625 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
626 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
627 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700628 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
629 &quot;heightPixels&quot;: 42, # The height in pixels.
630 &quot;widthPixels&quot;: 42, # The width in pixels.
631 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700632 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # Required. The click tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
633 &quot;viewTrackingUrl&quot;: &quot;A String&quot;, # Required. The view tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700634 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700635 &quot;lineItemIds&quot;: [ # Output only. The IDs of the line items this creative is associated with. To associate a creative to a line item, use LineItem.creative_ids instead.
636 &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700637 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700638 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
Bu Sun Kim65020912020-05-20 12:08:20 -0700639 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
640 { # Publisher review status for the creative.
641 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
642 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
643 },
644 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700645 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
646 &quot;approvalStatus&quot;: &quot;A String&quot;, # Represents the basic approval needed for a creative to begin serving. Summary of creative_and_landing_page_review_status and content_and_policy_review_status.
647 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
648 { # Exchange review status for the creative.
649 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
650 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
651 },
652 ],
653 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
Bu Sun Kim65020912020-05-20 12:08:20 -0700654 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700655 &quot;html5Video&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires HTML5 Video support. Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
656 &quot;assets&quot;: [ # Required. Assets associated to this creative. Assets can be associated to the creative in one of following roles: * `ASSET_ROLE_UNSPECIFIED` * `ASSET_ROLE_MAIN` * `ASSET_ROLE_BACKUP` * `ASSET_ROLE_POLITE_LOAD`
657 { # Asset association for the creative.
658 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
659 &quot;asset&quot;: { # A single asset. # The associated asset.
660 &quot;mediaId&quot;: &quot;A String&quot;, # Media ID of the uploaded asset. This is a unique identifier for the asset. This ID can be passed to other API calls, e.g. CreateCreative to associate the asset with a creative.
661 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
662 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700663 },
664 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700665 &quot;thirdPartyUrls&quot;: [ # Tracking URLs from third parties to track interactions with a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO`
666 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
667 &quot;url&quot;: &quot;A String&quot;, # Tracking URL used to track the interaction. Provide a URL with optional path or query string, beginning with `https:`. For example, https://www.example.com/path
668 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
669 },
670 ],
671 &quot;companionCreativeIds&quot;: [ # The IDs of companion creatives for a video creative. You can assign existing display creatives (with image or HTML5 assets) to serve surrounding the publisher&#x27;s video player. Companions display around the video player while the video is playing and remain after the video has completed. Creatives contain additional dimensions can not be companion creatives. This field is only supported for following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO`
672 &quot;A String&quot;,
673 ],
674 &quot;jsTrackerUrl&quot;: &quot;A String&quot;, # JavaScript measurement URL from supported third-party verification providers (ComScore, DoubleVerify, IAS, Moat). HTML script tags are not supported. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700675 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700676 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
677 &quot;requireMraid&quot;: True or False, # Optional. Indicates that the creative requires MRAID (Mobile Rich Media Ad Interface Definitions system). Set this if the creative relies on mobile gestures for interactivity, such as swiping or tapping. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
678 &quot;timerEvents&quot;: [ # Timer custom events for a rich media creative. Timers track the time during which a user views and interacts with a specified part of a rich media creative. A creative can have multiple timer events, each timed independently. Leave it empty or unset for creatives containing image assets only.
679 { # Timer event of the creative.
680 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
681 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
682 },
683 ],
684 &quot;expandOnHover&quot;: True or False, # Optional. Indicates the creative will automatically expand on hover. Optional and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
685 &quot;counterEvents&quot;: [ # Counter events for a rich media creative. Counters track the number of times that a user interacts with any part of a rich media creative in a specified way (mouse-overs, mouse-outs, clicks, taps, data loading, keyboard entries, etc.). Any event that can be captured in the creative can be recorded as a counter. Leave it empty or unset for creatives containing image assets only.
686 { # Counter event of the creative.
687 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
688 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
689 },
690 ],
691 &quot;universalAdId&quot;: { # A creative identifier provided by a registry that is unique across all platforms. This is part of the VAST 4.0 standard. # Optional. An optional creative identifier provided by a registry that is unique across all platforms. Universal Ad ID is part of the VAST 4.0 standard. It can be modified after the creative is created. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700692 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700693 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
Bu Sun Kim65020912020-05-20 12:08:20 -0700694 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700695 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
696 &quot;progressOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before counting a view. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
697 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
698 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
699 },
700 &quot;dimensions&quot;: { # Dimensions. # Required. Primary dimensions of the creative. Applicable to all creative types. The value of width_pixels and height_pixels defaults to `0` when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_INTERSTITIAL` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_VIDEO`
701 &quot;heightPixels&quot;: 42, # The height in pixels.
702 &quot;widthPixels&quot;: 42, # The width in pixels.
703 },
704 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
705 &quot;notes&quot;: &quot;A String&quot;, # User notes for this creative. Must be UTF-8 encoded with a length of no more than 20,000 characters.
706 &quot;iasCampaignMonitoring&quot;: True or False, # Indicates whether Integral Ad Science (IAS) campaign monitoring is enabled. To enable this for the creative, make sure the Advertiser.creative_config.ias_client_id has been set to your IAS client ID.
707 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
708 &quot;thirdPartyTag&quot;: &quot;A String&quot;, # Optional. The original third-party tag used for the creative. Required and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
709 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
710 &quot;A String&quot;,
711 ],
712 &quot;requireHtml5&quot;: True or False, # Optional. Indicates that the creative relies on HTML5 to render properly. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
713 &quot;vastTagUrl&quot;: &quot;A String&quot;, # Optional. The URL of the VAST tag for a third-party VAST tag creative. Required and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
714 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the creative. Must be UTF-8 encoded with a maximum size of 240 bytes.
715 &quot;transcodes&quot;: [ # Output only. Audio/Video transcodes. Display &amp; Video 360 transcodes the main asset into a number of alternative versions that use different file formats or have different properties (resolution, audio bit rate, and video bit rate), each designed for specific video players or bandwidths. These transcodes give a publisher&#x27;s system more options to choose from for each impression on your video and ensures that the appropriate file serves based on the viewer’s connection and screen size. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_AUDIO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700716 { # Represents information about the transcoded audio or video file.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700717 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
718 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
719 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
720 &quot;audioSampleRateHz&quot;: &quot;A String&quot;, # The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.
721 &quot;audioBitRateKbps&quot;: &quot;A String&quot;, # The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700722 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
723 &quot;heightPixels&quot;: 42, # The height in pixels.
724 &quot;widthPixels&quot;: 42, # The width in pixels.
725 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700726 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700727 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
728 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
Bu Sun Kim65020912020-05-20 12:08:20 -0700729 },
730 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700731 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
732 &quot;skippable&quot;: True or False, # Whether the user can choose to skip a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
733 &quot;expandingDirection&quot;: &quot;A String&quot;, # Optional. Specifies the expanding direction of the creative. Required and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
734 &quot;cmTrackingAd&quot;: { # A Campaign Manager tracking ad. # The Campaign Manager tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager and third-party ad serving: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` Output only for other cases.
Bu Sun Kim65020912020-05-20 12:08:20 -0700735 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager tracking Ad.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700736 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager tracking Ad.
Bu Sun Kim65020912020-05-20 12:08:20 -0700737 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager tracking Ad.
738 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700739 &quot;entityStatus&quot;: &quot;A String&quot;, # Required. Controls whether or not the creative can serve. Accepted values are: * `ENTITY_STATUS_ACTIVE` * `ENTITY_STATUS_ARCHIVED` * `ENTITY_STATUS_PAUSED`
740 &quot;exitEvents&quot;: [ # Required. Exit events for this creative. An exit (also known as a click tag) is any area in your creative that someone can click or tap to open an advertiser&#x27;s landing page. Every creative must include at least one exit. You can add an exit to your creative in any of the following ways: * Use Google Web Designer&#x27;s tap area. * Define a JavaScript variable called &quot;clickTag&quot;. * Use the Enabler (Enabler.exit()) to track exits in rich media formats.
741 { # Exit event of the creative.
742 &quot;url&quot;: &quot;A String&quot;, # Required. The click through URL of the exit event. This is required when type is: * `EXIT_EVENT_TYPE_DEFAULT` * `EXIT_EVENT_TYPE_BACKUP`
743 &quot;name&quot;: &quot;A String&quot;, # The name of the click tag of the exit event. The name must be unique within one creative. Leave it empty or unset for creatives containing image assets only.
744 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
745 &quot;reportingName&quot;: &quot;A String&quot;, # The name used to identify this event in reports. Leave it empty or unset for creatives containing image assets only.
746 },
747 ],
748 &quot;additionalDimensions&quot;: [ # Additional dimensions. Applicable when creative_type is one of: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_LIGHTBOX` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_PUBLISHER_HOSTED` If this field is specified, width_pixels and height_pixels are both required and must be greater than or equal to 0.
749 { # Dimensions.
750 &quot;heightPixels&quot;: 42, # The height in pixels.
751 &quot;widthPixels&quot;: 42, # The width in pixels.
752 },
753 ],
754 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
755 &quot;integrationCode&quot;: &quot;A String&quot;, # ID information used to link this creative to an external system. Must be UTF-8 encoded with a length of no more than 10,000 characters.
756 &quot;vpaid&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires VPAID (Digital Video Player-Ad Interface). Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
757 &quot;trackerUrls&quot;: [ # Tracking URLs for analytics providers or third-party ad technology vendors. The URLs must start with https (except on inventory that doesn&#x27;t require SSL compliance). If using macros in your URL, use only macros supported by Display &amp; Video 360. Standard URLs only, no IMG or SCRIPT tags. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
758 &quot;A String&quot;,
759 ],
760 &quot;mediaDuration&quot;: &quot;A String&quot;, # Output only. Media duration of the creative. Applicable when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_PUBLISHER_HOSTED`
761 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
762 &quot;skipOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before the skip button appears. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
763 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
764 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
Bu Sun Kim65020912020-05-20 12:08:20 -0700765 },
766 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
Bu Sun Kim65020912020-05-20 12:08:20 -0700767 },
768 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700769 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve the next page of results. Pass this value in the page_token field in the subsequent call to `ListCreativesRequest` method to retrieve the next page of results. If this field is null, it means this is the last page.
Bu Sun Kim65020912020-05-20 12:08:20 -0700770 }</pre>
771</div>
772
773<div class="method">
774 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
775 <pre>Retrieves the next page of results.
776
777Args:
778 previous_request: The request for the previous page. (required)
779 previous_response: The response from the request for the previous page. (required)
780
781Returns:
782 A request object that you can call &#x27;execute()&#x27; on to request the next
783 page. Returns None if there are no more items in the collection.
784 </pre>
785</div>
786
787<div class="method">
788 <code class="details" id="patch">patch(advertiserId, creativeId, body=None, updateMask=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700789 <pre>Updates an existing creative. Returns the updated creative if successful.
Bu Sun Kim65020912020-05-20 12:08:20 -0700790
791Args:
792 advertiserId: string, Output only. The unique ID of the advertiser the creative belongs to. (required)
793 creativeId: string, Output only. The unique ID of the creative. Assigned by the system. (required)
794 body: object, The request body.
795 The object takes the form of:
796
797{ # A single Creative.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700798 &quot;requirePingForAttribution&quot;: True or False, # Optional. Indicates that the creative will wait for a return ping for attribution. Only valid when using a Campaign Manager tracking ad with a third-party ad server parameter and the ${DC_DBM_TOKEN} macro. Optional and only valid for third-party tag creatives or third-party VAST tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700799 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700800 &quot;obaIcon&quot;: { # OBA Icon for a Creative # Specifies the OBA icon for a video creative. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO`
801 &quot;landingPageUrl&quot;: &quot;A String&quot;, # Required. The landing page URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
802 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
803 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
804 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
805 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700806 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
807 &quot;heightPixels&quot;: 42, # The height in pixels.
808 &quot;widthPixels&quot;: 42, # The width in pixels.
809 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700810 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # Required. The click tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
811 &quot;viewTrackingUrl&quot;: &quot;A String&quot;, # Required. The view tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700812 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700813 &quot;lineItemIds&quot;: [ # Output only. The IDs of the line items this creative is associated with. To associate a creative to a line item, use LineItem.creative_ids instead.
814 &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700815 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700816 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
Bu Sun Kim65020912020-05-20 12:08:20 -0700817 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
818 { # Publisher review status for the creative.
819 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
820 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
821 },
822 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700823 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
824 &quot;approvalStatus&quot;: &quot;A String&quot;, # Represents the basic approval needed for a creative to begin serving. Summary of creative_and_landing_page_review_status and content_and_policy_review_status.
825 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
826 { # Exchange review status for the creative.
827 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
828 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
829 },
830 ],
831 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
Bu Sun Kim65020912020-05-20 12:08:20 -0700832 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700833 &quot;html5Video&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires HTML5 Video support. Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
834 &quot;assets&quot;: [ # Required. Assets associated to this creative. Assets can be associated to the creative in one of following roles: * `ASSET_ROLE_UNSPECIFIED` * `ASSET_ROLE_MAIN` * `ASSET_ROLE_BACKUP` * `ASSET_ROLE_POLITE_LOAD`
835 { # Asset association for the creative.
836 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
837 &quot;asset&quot;: { # A single asset. # The associated asset.
838 &quot;mediaId&quot;: &quot;A String&quot;, # Media ID of the uploaded asset. This is a unique identifier for the asset. This ID can be passed to other API calls, e.g. CreateCreative to associate the asset with a creative.
839 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
840 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700841 },
842 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700843 &quot;thirdPartyUrls&quot;: [ # Tracking URLs from third parties to track interactions with a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO`
844 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
845 &quot;url&quot;: &quot;A String&quot;, # Tracking URL used to track the interaction. Provide a URL with optional path or query string, beginning with `https:`. For example, https://www.example.com/path
846 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
847 },
848 ],
849 &quot;companionCreativeIds&quot;: [ # The IDs of companion creatives for a video creative. You can assign existing display creatives (with image or HTML5 assets) to serve surrounding the publisher&#x27;s video player. Companions display around the video player while the video is playing and remain after the video has completed. Creatives contain additional dimensions can not be companion creatives. This field is only supported for following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO`
850 &quot;A String&quot;,
851 ],
852 &quot;jsTrackerUrl&quot;: &quot;A String&quot;, # JavaScript measurement URL from supported third-party verification providers (ComScore, DoubleVerify, IAS, Moat). HTML script tags are not supported. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700853 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700854 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
855 &quot;requireMraid&quot;: True or False, # Optional. Indicates that the creative requires MRAID (Mobile Rich Media Ad Interface Definitions system). Set this if the creative relies on mobile gestures for interactivity, such as swiping or tapping. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
856 &quot;timerEvents&quot;: [ # Timer custom events for a rich media creative. Timers track the time during which a user views and interacts with a specified part of a rich media creative. A creative can have multiple timer events, each timed independently. Leave it empty or unset for creatives containing image assets only.
857 { # Timer event of the creative.
858 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
859 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
860 },
861 ],
862 &quot;expandOnHover&quot;: True or False, # Optional. Indicates the creative will automatically expand on hover. Optional and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
863 &quot;counterEvents&quot;: [ # Counter events for a rich media creative. Counters track the number of times that a user interacts with any part of a rich media creative in a specified way (mouse-overs, mouse-outs, clicks, taps, data loading, keyboard entries, etc.). Any event that can be captured in the creative can be recorded as a counter. Leave it empty or unset for creatives containing image assets only.
864 { # Counter event of the creative.
865 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
866 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
867 },
868 ],
869 &quot;universalAdId&quot;: { # A creative identifier provided by a registry that is unique across all platforms. This is part of the VAST 4.0 standard. # Optional. An optional creative identifier provided by a registry that is unique across all platforms. Universal Ad ID is part of the VAST 4.0 standard. It can be modified after the creative is created. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700870 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700871 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
Bu Sun Kim65020912020-05-20 12:08:20 -0700872 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700873 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
874 &quot;progressOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before counting a view. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
875 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
876 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
877 },
878 &quot;dimensions&quot;: { # Dimensions. # Required. Primary dimensions of the creative. Applicable to all creative types. The value of width_pixels and height_pixels defaults to `0` when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_INTERSTITIAL` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_VIDEO`
879 &quot;heightPixels&quot;: 42, # The height in pixels.
880 &quot;widthPixels&quot;: 42, # The width in pixels.
881 },
882 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
883 &quot;notes&quot;: &quot;A String&quot;, # User notes for this creative. Must be UTF-8 encoded with a length of no more than 20,000 characters.
884 &quot;iasCampaignMonitoring&quot;: True or False, # Indicates whether Integral Ad Science (IAS) campaign monitoring is enabled. To enable this for the creative, make sure the Advertiser.creative_config.ias_client_id has been set to your IAS client ID.
885 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
886 &quot;thirdPartyTag&quot;: &quot;A String&quot;, # Optional. The original third-party tag used for the creative. Required and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
887 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
888 &quot;A String&quot;,
889 ],
890 &quot;requireHtml5&quot;: True or False, # Optional. Indicates that the creative relies on HTML5 to render properly. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
891 &quot;vastTagUrl&quot;: &quot;A String&quot;, # Optional. The URL of the VAST tag for a third-party VAST tag creative. Required and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
892 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the creative. Must be UTF-8 encoded with a maximum size of 240 bytes.
893 &quot;transcodes&quot;: [ # Output only. Audio/Video transcodes. Display &amp; Video 360 transcodes the main asset into a number of alternative versions that use different file formats or have different properties (resolution, audio bit rate, and video bit rate), each designed for specific video players or bandwidths. These transcodes give a publisher&#x27;s system more options to choose from for each impression on your video and ensures that the appropriate file serves based on the viewer’s connection and screen size. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_AUDIO`
Bu Sun Kim65020912020-05-20 12:08:20 -0700894 { # Represents information about the transcoded audio or video file.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700895 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
896 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
897 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
898 &quot;audioSampleRateHz&quot;: &quot;A String&quot;, # The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.
899 &quot;audioBitRateKbps&quot;: &quot;A String&quot;, # The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700900 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
901 &quot;heightPixels&quot;: 42, # The height in pixels.
902 &quot;widthPixels&quot;: 42, # The width in pixels.
903 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700904 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700905 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
906 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
Bu Sun Kim65020912020-05-20 12:08:20 -0700907 },
908 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700909 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
910 &quot;skippable&quot;: True or False, # Whether the user can choose to skip a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
911 &quot;expandingDirection&quot;: &quot;A String&quot;, # Optional. Specifies the expanding direction of the creative. Required and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
912 &quot;cmTrackingAd&quot;: { # A Campaign Manager tracking ad. # The Campaign Manager tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager and third-party ad serving: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` Output only for other cases.
Bu Sun Kim65020912020-05-20 12:08:20 -0700913 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager tracking Ad.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700914 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager tracking Ad.
Bu Sun Kim65020912020-05-20 12:08:20 -0700915 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager tracking Ad.
916 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700917 &quot;entityStatus&quot;: &quot;A String&quot;, # Required. Controls whether or not the creative can serve. Accepted values are: * `ENTITY_STATUS_ACTIVE` * `ENTITY_STATUS_ARCHIVED` * `ENTITY_STATUS_PAUSED`
918 &quot;exitEvents&quot;: [ # Required. Exit events for this creative. An exit (also known as a click tag) is any area in your creative that someone can click or tap to open an advertiser&#x27;s landing page. Every creative must include at least one exit. You can add an exit to your creative in any of the following ways: * Use Google Web Designer&#x27;s tap area. * Define a JavaScript variable called &quot;clickTag&quot;. * Use the Enabler (Enabler.exit()) to track exits in rich media formats.
919 { # Exit event of the creative.
920 &quot;url&quot;: &quot;A String&quot;, # Required. The click through URL of the exit event. This is required when type is: * `EXIT_EVENT_TYPE_DEFAULT` * `EXIT_EVENT_TYPE_BACKUP`
921 &quot;name&quot;: &quot;A String&quot;, # The name of the click tag of the exit event. The name must be unique within one creative. Leave it empty or unset for creatives containing image assets only.
922 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
923 &quot;reportingName&quot;: &quot;A String&quot;, # The name used to identify this event in reports. Leave it empty or unset for creatives containing image assets only.
924 },
925 ],
926 &quot;additionalDimensions&quot;: [ # Additional dimensions. Applicable when creative_type is one of: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_LIGHTBOX` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_PUBLISHER_HOSTED` If this field is specified, width_pixels and height_pixels are both required and must be greater than or equal to 0.
927 { # Dimensions.
928 &quot;heightPixels&quot;: 42, # The height in pixels.
929 &quot;widthPixels&quot;: 42, # The width in pixels.
930 },
931 ],
932 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
933 &quot;integrationCode&quot;: &quot;A String&quot;, # ID information used to link this creative to an external system. Must be UTF-8 encoded with a length of no more than 10,000 characters.
934 &quot;vpaid&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires VPAID (Digital Video Player-Ad Interface). Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
935 &quot;trackerUrls&quot;: [ # Tracking URLs for analytics providers or third-party ad technology vendors. The URLs must start with https (except on inventory that doesn&#x27;t require SSL compliance). If using macros in your URL, use only macros supported by Display &amp; Video 360. Standard URLs only, no IMG or SCRIPT tags. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
936 &quot;A String&quot;,
937 ],
938 &quot;mediaDuration&quot;: &quot;A String&quot;, # Output only. Media duration of the creative. Applicable when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_PUBLISHER_HOSTED`
939 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
940 &quot;skipOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before the skip button appears. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
941 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
942 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
Bu Sun Kim65020912020-05-20 12:08:20 -0700943 },
944 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
Bu Sun Kim65020912020-05-20 12:08:20 -0700945}
946
947 updateMask: string, Required. The mask to control which fields to update.
948 x__xgafv: string, V1 error format.
949 Allowed values
950 1 - v1 error format
951 2 - v2 error format
952
953Returns:
954 An object of the form:
955
956 { # A single Creative.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700957 &quot;requirePingForAttribution&quot;: True or False, # Optional. Indicates that the creative will wait for a return ping for attribution. Only valid when using a Campaign Manager tracking ad with a third-party ad server parameter and the ${DC_DBM_TOKEN} macro. Optional and only valid for third-party tag creatives or third-party VAST tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700958 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700959 &quot;obaIcon&quot;: { # OBA Icon for a Creative # Specifies the OBA icon for a video creative. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO`
960 &quot;landingPageUrl&quot;: &quot;A String&quot;, # Required. The landing page URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
961 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
962 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
963 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
964 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700965 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
966 &quot;heightPixels&quot;: 42, # The height in pixels.
967 &quot;widthPixels&quot;: 42, # The width in pixels.
968 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700969 &quot;clickTrackingUrl&quot;: &quot;A String&quot;, # Required. The click tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
970 &quot;viewTrackingUrl&quot;: &quot;A String&quot;, # Required. The view tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700971 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700972 &quot;lineItemIds&quot;: [ # Output only. The IDs of the line items this creative is associated with. To associate a creative to a line item, use LineItem.creative_ids instead.
973 &quot;A String&quot;,
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700974 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700975 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
Bu Sun Kim65020912020-05-20 12:08:20 -0700976 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
977 { # Publisher review status for the creative.
978 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
979 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
980 },
981 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700982 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
983 &quot;approvalStatus&quot;: &quot;A String&quot;, # Represents the basic approval needed for a creative to begin serving. Summary of creative_and_landing_page_review_status and content_and_policy_review_status.
984 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
985 { # Exchange review status for the creative.
986 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
987 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
988 },
989 ],
990 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
Bu Sun Kim65020912020-05-20 12:08:20 -0700991 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700992 &quot;html5Video&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires HTML5 Video support. Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
993 &quot;assets&quot;: [ # Required. Assets associated to this creative. Assets can be associated to the creative in one of following roles: * `ASSET_ROLE_UNSPECIFIED` * `ASSET_ROLE_MAIN` * `ASSET_ROLE_BACKUP` * `ASSET_ROLE_POLITE_LOAD`
994 { # Asset association for the creative.
995 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
996 &quot;asset&quot;: { # A single asset. # The associated asset.
997 &quot;mediaId&quot;: &quot;A String&quot;, # Media ID of the uploaded asset. This is a unique identifier for the asset. This ID can be passed to other API calls, e.g. CreateCreative to associate the asset with a creative.
998 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
999 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -07001000 },
1001 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001002 &quot;thirdPartyUrls&quot;: [ # Tracking URLs from third parties to track interactions with a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO`
1003 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
1004 &quot;url&quot;: &quot;A String&quot;, # Tracking URL used to track the interaction. Provide a URL with optional path or query string, beginning with `https:`. For example, https://www.example.com/path
1005 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
1006 },
1007 ],
1008 &quot;companionCreativeIds&quot;: [ # The IDs of companion creatives for a video creative. You can assign existing display creatives (with image or HTML5 assets) to serve surrounding the publisher&#x27;s video player. Companions display around the video player while the video is playing and remain after the video has completed. Creatives contain additional dimensions can not be companion creatives. This field is only supported for following creative_type: * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO`
1009 &quot;A String&quot;,
1010 ],
1011 &quot;jsTrackerUrl&quot;: &quot;A String&quot;, # JavaScript measurement URL from supported third-party verification providers (ComScore, DoubleVerify, IAS, Moat). HTML script tags are not supported. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -07001012 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001013 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
1014 &quot;requireMraid&quot;: True or False, # Optional. Indicates that the creative requires MRAID (Mobile Rich Media Ad Interface Definitions system). Set this if the creative relies on mobile gestures for interactivity, such as swiping or tapping. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
1015 &quot;timerEvents&quot;: [ # Timer custom events for a rich media creative. Timers track the time during which a user views and interacts with a specified part of a rich media creative. A creative can have multiple timer events, each timed independently. Leave it empty or unset for creatives containing image assets only.
1016 { # Timer event of the creative.
1017 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
1018 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
1019 },
1020 ],
1021 &quot;expandOnHover&quot;: True or False, # Optional. Indicates the creative will automatically expand on hover. Optional and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
1022 &quot;counterEvents&quot;: [ # Counter events for a rich media creative. Counters track the number of times that a user interacts with any part of a rich media creative in a specified way (mouse-overs, mouse-outs, clicks, taps, data loading, keyboard entries, etc.). Any event that can be captured in the creative can be recorded as a counter. Leave it empty or unset for creatives containing image assets only.
1023 { # Counter event of the creative.
1024 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
1025 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
1026 },
1027 ],
1028 &quot;universalAdId&quot;: { # A creative identifier provided by a registry that is unique across all platforms. This is part of the VAST 4.0 standard. # Optional. An optional creative identifier provided by a registry that is unique across all platforms. Universal Ad ID is part of the VAST 4.0 standard. It can be modified after the creative is created. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
Bu Sun Kim65020912020-05-20 12:08:20 -07001029 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001030 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
Bu Sun Kim65020912020-05-20 12:08:20 -07001031 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001032 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
1033 &quot;progressOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before counting a view. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
1034 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
1035 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
1036 },
1037 &quot;dimensions&quot;: { # Dimensions. # Required. Primary dimensions of the creative. Applicable to all creative types. The value of width_pixels and height_pixels defaults to `0` when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_INTERSTITIAL` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL_VIDEO`
1038 &quot;heightPixels&quot;: 42, # The height in pixels.
1039 &quot;widthPixels&quot;: 42, # The width in pixels.
1040 },
1041 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
1042 &quot;notes&quot;: &quot;A String&quot;, # User notes for this creative. Must be UTF-8 encoded with a length of no more than 20,000 characters.
1043 &quot;iasCampaignMonitoring&quot;: True or False, # Indicates whether Integral Ad Science (IAS) campaign monitoring is enabled. To enable this for the creative, make sure the Advertiser.creative_config.ias_client_id has been set to your IAS client ID.
1044 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
1045 &quot;thirdPartyTag&quot;: &quot;A String&quot;, # Optional. The original third-party tag used for the creative. Required and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
1046 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
1047 &quot;A String&quot;,
1048 ],
1049 &quot;requireHtml5&quot;: True or False, # Optional. Indicates that the creative relies on HTML5 to render properly. Optional and only valid for third-party tag creatives. Third-party tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE`
1050 &quot;vastTagUrl&quot;: &quot;A String&quot;, # Optional. The URL of the VAST tag for a third-party VAST tag creative. Required and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
1051 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the creative. Must be UTF-8 encoded with a maximum size of 240 bytes.
1052 &quot;transcodes&quot;: [ # Output only. Audio/Video transcodes. Display &amp; Video 360 transcodes the main asset into a number of alternative versions that use different file formats or have different properties (resolution, audio bit rate, and video bit rate), each designed for specific video players or bandwidths. These transcodes give a publisher&#x27;s system more options to choose from for each impression on your video and ensures that the appropriate file serves based on the viewer’s connection and screen size. This field is only supported in following creative_type: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_AUDIO`
Bu Sun Kim65020912020-05-20 12:08:20 -07001053 { # Represents information about the transcoded audio or video file.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001054 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
1055 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
1056 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
1057 &quot;audioSampleRateHz&quot;: &quot;A String&quot;, # The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.
1058 &quot;audioBitRateKbps&quot;: &quot;A String&quot;, # The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -07001059 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
1060 &quot;heightPixels&quot;: 42, # The height in pixels.
1061 &quot;widthPixels&quot;: 42, # The width in pixels.
1062 },
Bu Sun Kim65020912020-05-20 12:08:20 -07001063 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001064 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
1065 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
Bu Sun Kim65020912020-05-20 12:08:20 -07001066 },
1067 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001068 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
1069 &quot;skippable&quot;: True or False, # Whether the user can choose to skip a video creative. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
1070 &quot;expandingDirection&quot;: &quot;A String&quot;, # Optional. Specifies the expanding direction of the creative. Required and only valid for third-party expandable creatives. Third-party expandable creatives are creatives with following hosting source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_EXPANDABLE`
1071 &quot;cmTrackingAd&quot;: { # A Campaign Manager tracking ad. # The Campaign Manager tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager and third-party ad serving: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` Output only for other cases.
Bu Sun Kim65020912020-05-20 12:08:20 -07001072 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager tracking Ad.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001073 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager tracking Ad.
Bu Sun Kim65020912020-05-20 12:08:20 -07001074 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager tracking Ad.
1075 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001076 &quot;entityStatus&quot;: &quot;A String&quot;, # Required. Controls whether or not the creative can serve. Accepted values are: * `ENTITY_STATUS_ACTIVE` * `ENTITY_STATUS_ARCHIVED` * `ENTITY_STATUS_PAUSED`
1077 &quot;exitEvents&quot;: [ # Required. Exit events for this creative. An exit (also known as a click tag) is any area in your creative that someone can click or tap to open an advertiser&#x27;s landing page. Every creative must include at least one exit. You can add an exit to your creative in any of the following ways: * Use Google Web Designer&#x27;s tap area. * Define a JavaScript variable called &quot;clickTag&quot;. * Use the Enabler (Enabler.exit()) to track exits in rich media formats.
1078 { # Exit event of the creative.
1079 &quot;url&quot;: &quot;A String&quot;, # Required. The click through URL of the exit event. This is required when type is: * `EXIT_EVENT_TYPE_DEFAULT` * `EXIT_EVENT_TYPE_BACKUP`
1080 &quot;name&quot;: &quot;A String&quot;, # The name of the click tag of the exit event. The name must be unique within one creative. Leave it empty or unset for creatives containing image assets only.
1081 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
1082 &quot;reportingName&quot;: &quot;A String&quot;, # The name used to identify this event in reports. Leave it empty or unset for creatives containing image assets only.
1083 },
1084 ],
1085 &quot;additionalDimensions&quot;: [ # Additional dimensions. Applicable when creative_type is one of: * `CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_TEMPLATED_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_LIGHTBOX` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_PUBLISHER_HOSTED` If this field is specified, width_pixels and height_pixels are both required and must be greater than or equal to 0.
1086 { # Dimensions.
1087 &quot;heightPixels&quot;: 42, # The height in pixels.
1088 &quot;widthPixels&quot;: 42, # The width in pixels.
1089 },
1090 ],
1091 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
1092 &quot;integrationCode&quot;: &quot;A String&quot;, # ID information used to link this creative to an external system. Must be UTF-8 encoded with a length of no more than 10,000 characters.
1093 &quot;vpaid&quot;: True or False, # Output only. Indicates the third-party VAST tag creative requires VPAID (Digital Video Player-Ad Interface). Output only and only valid for third-party VAST tag creatives. Third-party VAST tag creatives are creatives with following hosting_source: * `HOSTING_SOURCE_THIRD_PARTY` combined with following creative_type: * `CREATIVE_TYPE_VIDEO`
1094 &quot;trackerUrls&quot;: [ # Tracking URLs for analytics providers or third-party ad technology vendors. The URLs must start with https (except on inventory that doesn&#x27;t require SSL compliance). If using macros in your URL, use only macros supported by Display &amp; Video 360. Standard URLs only, no IMG or SCRIPT tags. This field is only supported in following creative_type: * `CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_NATIVE_APP_INSTALL` * `CREATIVE_TYPE_NATIVE_APP_INSTALL_SQUARE` * `CREATIVE_TYPE_NATIVE_VIDEO`
1095 &quot;A String&quot;,
1096 ],
1097 &quot;mediaDuration&quot;: &quot;A String&quot;, # Output only. Media duration of the creative. Applicable when creative_type is one of: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `CREATIVE_TYPE_PUBLISHER_HOSTED`
1098 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
1099 &quot;skipOffset&quot;: { # The length an audio or a video has been played. # Amount of time to play the video before the skip button appears. This field is required when skippable is true. This field is only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
1100 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
1101 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
Bu Sun Kim65020912020-05-20 12:08:20 -07001102 },
1103 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
Bu Sun Kim65020912020-05-20 12:08:20 -07001104 }</pre>
1105</div>
1106
1107</body></html>