blob: fa33491492d3016e4d507911b4e85d7895f1930b [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">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070081 <code><a href="#create">create(advertiserId, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070082<p class="firstline">Creates a new creative. Returns the newly created creative if successful.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070083<p class="toc_element">
84 <code><a href="#delete">delete(advertiserId, creativeId, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070085<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 -070086<p class="toc_element">
87 <code><a href="#get">get(advertiserId, creativeId, x__xgafv=None)</a></code></p>
88<p class="firstline">Gets a creative.</p>
89<p class="toc_element">
Yoshi Automation Botb6971b02020-11-26 17:16:03 -080090 <code><a href="#list">list(advertiserId, pageSize=None, orderBy=None, filter=None, pageToken=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070091<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 -070092<p class="toc_element">
93 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<p class="toc_element">
96 <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 -070097<p class="firstline">Updates an existing creative. Returns the updated creative if successful.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070098<h3>Method Details</h3>
99<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700100 <code class="details" id="close">close()</code>
101 <pre>Close httplib2 connections.</pre>
102</div>
103
104<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700105 <code class="details" id="create">create(advertiserId, body=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700106 <pre>Creates a new creative. Returns the newly created creative if successful.
Bu Sun Kim65020912020-05-20 12:08:20 -0700107
108Args:
109 advertiserId: string, Output only. The unique ID of the advertiser the creative belongs to. (required)
110 body: object, The request body.
111 The object takes the form of:
112
113{ # A single Creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800114 &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`
115 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
116 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
117 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800118 &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.
119 { # Timer event of the creative.
120 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
121 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
122 },
123 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800124 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
125 &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`
126 &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`
127 &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.
128 { # Counter event of the creative.
129 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
130 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
131 },
132 ],
133 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
134 &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`
135 { # Represents information about the transcoded audio or video file.
136 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
137 &quot;widthPixels&quot;: 42, # The width in pixels.
138 &quot;heightPixels&quot;: 42, # The height in pixels.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800139 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800140 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
141 &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.
142 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
143 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
144 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
145 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
146 &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.
147 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
148 },
149 ],
150 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
151 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
152 &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.
153 { # Exit event of the creative.
154 &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.
155 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
156 &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`
157 &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.
158 },
159 ],
160 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
161 &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 360 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`
162 &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`
163 &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`
164 &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
165 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
166 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
167 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
168 &quot;widthPixels&quot;: 42, # The width in pixels.
169 &quot;heightPixels&quot;: 42, # The height in pixels.
170 },
171 &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
172 &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
173 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
174 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700175 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800176 &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`
177 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
178 &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`
179 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
180 &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`
181 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
182 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
183 },
184 &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.
185 { # Dimensions.
186 &quot;widthPixels&quot;: 42, # The width in pixels.
187 &quot;heightPixels&quot;: 42, # The height in pixels.
188 },
189 ],
190 &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`
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800191 &quot;A String&quot;,
192 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800193 &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`
194 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
195 &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`
196 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800197 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager 360 placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800198 &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`
199 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
200 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
201 },
202 &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.
203 &quot;A String&quot;,
204 ],
205 &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`
206 &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.
207 &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`
208 &quot;widthPixels&quot;: 42, # The width in pixels.
209 &quot;heightPixels&quot;: 42, # The height in pixels.
210 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800211 &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`
212 { # Asset association for the creative.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800213 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800214 &quot;asset&quot;: { # A single asset. # The associated asset.
215 &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.
216 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
217 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700218 },
219 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800220 &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.
221 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
222 &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`
223 &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.
224 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
225 &quot;A String&quot;,
226 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800227 &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`
228 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
229 &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
230 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800231 },
232 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800233 &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`
234 &quot;A String&quot;,
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800235 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800236 &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`
237 &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`
238 &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`
239 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
240 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
241 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
242 { # Exchange review status for the creative.
243 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
244 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800245 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800246 ],
247 &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.
248 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
249 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
250 { # Publisher review status for the creative.
251 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
252 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
253 },
254 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800255 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800256 &quot;cmTrackingAd&quot;: { # A Campaign Manager 360 tracking ad. # The Campaign Manager 360 tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager 360 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.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800257 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager 360 tracking Ad.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800258 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager 360 tracking Ad.
259 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager 360 tracking Ad.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800260 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800261 }
Bu Sun Kim65020912020-05-20 12:08:20 -0700262
263 x__xgafv: string, V1 error format.
264 Allowed values
265 1 - v1 error format
266 2 - v2 error format
267
268Returns:
269 An object of the form:
270
271 { # A single Creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800272 &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`
273 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
274 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
275 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800276 &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.
277 { # Timer event of the creative.
278 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
279 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
280 },
281 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800282 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
283 &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`
284 &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`
285 &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.
286 { # Counter event of the creative.
287 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
288 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
289 },
290 ],
291 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
292 &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`
293 { # Represents information about the transcoded audio or video file.
294 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
295 &quot;widthPixels&quot;: 42, # The width in pixels.
296 &quot;heightPixels&quot;: 42, # The height in pixels.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800297 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800298 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
299 &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.
300 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
301 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
302 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
303 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
304 &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.
305 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
306 },
307 ],
308 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
309 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
310 &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.
311 { # Exit event of the creative.
312 &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.
313 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
314 &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`
315 &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.
316 },
317 ],
318 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
319 &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 360 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`
320 &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`
321 &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`
322 &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
323 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
324 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
325 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
326 &quot;widthPixels&quot;: 42, # The width in pixels.
327 &quot;heightPixels&quot;: 42, # The height in pixels.
328 },
329 &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
330 &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
331 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
332 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700333 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800334 &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`
335 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
336 &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`
337 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
338 &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`
339 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
340 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
341 },
342 &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.
343 { # Dimensions.
344 &quot;widthPixels&quot;: 42, # The width in pixels.
345 &quot;heightPixels&quot;: 42, # The height in pixels.
346 },
347 ],
348 &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`
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800349 &quot;A String&quot;,
350 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800351 &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`
352 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
353 &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`
354 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800355 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager 360 placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800356 &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`
357 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
358 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
359 },
360 &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.
361 &quot;A String&quot;,
362 ],
363 &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`
364 &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.
365 &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`
366 &quot;widthPixels&quot;: 42, # The width in pixels.
367 &quot;heightPixels&quot;: 42, # The height in pixels.
368 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800369 &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`
370 { # Asset association for the creative.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800371 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800372 &quot;asset&quot;: { # A single asset. # The associated asset.
373 &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.
374 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
375 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700376 },
377 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800378 &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.
379 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
380 &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`
381 &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.
382 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
383 &quot;A String&quot;,
384 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800385 &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`
386 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
387 &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
388 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800389 },
390 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800391 &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`
392 &quot;A String&quot;,
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800393 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800394 &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`
395 &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`
396 &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`
397 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
398 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
399 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
400 { # Exchange review status for the creative.
401 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
402 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800403 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800404 ],
405 &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.
406 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
407 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
408 { # Publisher review status for the creative.
409 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
410 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
411 },
412 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800413 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800414 &quot;cmTrackingAd&quot;: { # A Campaign Manager 360 tracking ad. # The Campaign Manager 360 tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager 360 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.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800415 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager 360 tracking Ad.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800416 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager 360 tracking Ad.
417 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager 360 tracking Ad.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800418 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800419 }</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700420</div>
421
422<div class="method">
423 <code class="details" id="delete">delete(advertiserId, creativeId, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700424 <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 -0700425
426Args:
427 advertiserId: string, The ID of the advertiser this creative belongs to. (required)
428 creativeId: string, The ID of the creative to be deleted. (required)
429 x__xgafv: string, V1 error format.
430 Allowed values
431 1 - v1 error format
432 2 - v2 error format
433
434Returns:
435 An object of the form:
436
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700437 { # 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 -0700438 }</pre>
439</div>
440
441<div class="method">
442 <code class="details" id="get">get(advertiserId, creativeId, x__xgafv=None)</code>
443 <pre>Gets a creative.
444
445Args:
446 advertiserId: string, Required. The ID of the advertiser this creative belongs to. (required)
447 creativeId: string, Required. The ID of the creative to fetch. (required)
448 x__xgafv: string, V1 error format.
449 Allowed values
450 1 - v1 error format
451 2 - v2 error format
452
453Returns:
454 An object of the form:
455
456 { # A single Creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800457 &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`
458 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
459 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
460 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800461 &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.
462 { # Timer event of the creative.
463 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
464 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
465 },
466 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800467 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
468 &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`
469 &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`
470 &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.
471 { # Counter event of the creative.
472 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
473 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
474 },
475 ],
476 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
477 &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`
478 { # Represents information about the transcoded audio or video file.
479 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
480 &quot;widthPixels&quot;: 42, # The width in pixels.
481 &quot;heightPixels&quot;: 42, # The height in pixels.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800482 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800483 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
484 &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.
485 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
486 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
487 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
488 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
489 &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.
490 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
491 },
492 ],
493 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
494 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
495 &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.
496 { # Exit event of the creative.
497 &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.
498 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
499 &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`
500 &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.
501 },
502 ],
503 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
504 &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 360 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`
505 &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`
506 &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`
507 &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
508 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
509 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
510 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
511 &quot;widthPixels&quot;: 42, # The width in pixels.
512 &quot;heightPixels&quot;: 42, # The height in pixels.
513 },
514 &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
515 &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
516 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
517 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700518 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800519 &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`
520 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
521 &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`
522 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
523 &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`
524 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
525 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
526 },
527 &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.
528 { # Dimensions.
529 &quot;widthPixels&quot;: 42, # The width in pixels.
530 &quot;heightPixels&quot;: 42, # The height in pixels.
531 },
532 ],
533 &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`
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800534 &quot;A String&quot;,
535 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800536 &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`
537 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
538 &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`
539 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800540 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager 360 placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800541 &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`
542 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
543 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
544 },
545 &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.
546 &quot;A String&quot;,
547 ],
548 &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`
549 &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.
550 &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`
551 &quot;widthPixels&quot;: 42, # The width in pixels.
552 &quot;heightPixels&quot;: 42, # The height in pixels.
553 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800554 &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`
555 { # Asset association for the creative.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800556 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800557 &quot;asset&quot;: { # A single asset. # The associated asset.
558 &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.
559 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
560 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700561 },
562 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800563 &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.
564 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
565 &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`
566 &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.
567 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
568 &quot;A String&quot;,
569 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800570 &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`
571 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
572 &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
573 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800574 },
575 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800576 &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`
577 &quot;A String&quot;,
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800578 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800579 &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`
580 &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`
581 &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`
582 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
583 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
584 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
585 { # Exchange review status for the creative.
586 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
587 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800588 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800589 ],
590 &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.
591 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
592 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
593 { # Publisher review status for the creative.
594 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
595 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
596 },
597 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800598 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800599 &quot;cmTrackingAd&quot;: { # A Campaign Manager 360 tracking ad. # The Campaign Manager 360 tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager 360 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.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800600 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager 360 tracking Ad.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800601 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager 360 tracking Ad.
602 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager 360 tracking Ad.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800603 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800604 }</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700605</div>
606
607<div class="method">
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800608 <code class="details" id="list">list(advertiserId, pageSize=None, orderBy=None, filter=None, pageToken=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700609 <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 -0700610
611Args:
612 advertiserId: string, Required. The ID of the advertiser to list creatives for. (required)
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800613 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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700614 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`.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800615 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.
616 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.
Bu Sun Kim65020912020-05-20 12:08:20 -0700617 x__xgafv: string, V1 error format.
618 Allowed values
619 1 - v1 error format
620 2 - v2 error format
621
622Returns:
623 An object of the form:
624
625 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700626 &quot;creatives&quot;: [ # The list of creatives. This list will be absent if empty.
Bu Sun Kim65020912020-05-20 12:08:20 -0700627 { # A single Creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800628 &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`
629 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
630 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
631 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800632 &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.
633 { # Timer event of the creative.
634 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
635 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
636 },
637 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800638 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
639 &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`
640 &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`
641 &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.
642 { # Counter event of the creative.
643 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
644 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
645 },
646 ],
647 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
648 &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`
649 { # Represents information about the transcoded audio or video file.
650 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
651 &quot;widthPixels&quot;: 42, # The width in pixels.
652 &quot;heightPixels&quot;: 42, # The height in pixels.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800653 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800654 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
655 &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.
656 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
657 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
658 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
659 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
660 &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.
661 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
662 },
663 ],
664 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
665 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
666 &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.
667 { # Exit event of the creative.
668 &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.
669 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
670 &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`
671 &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.
672 },
673 ],
674 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
675 &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 360 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`
676 &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`
677 &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`
678 &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
679 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
680 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
681 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
682 &quot;widthPixels&quot;: 42, # The width in pixels.
683 &quot;heightPixels&quot;: 42, # The height in pixels.
684 },
685 &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
686 &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
687 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
688 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700689 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800690 &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`
691 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
692 &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`
693 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
694 &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`
695 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
696 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
697 },
698 &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.
699 { # Dimensions.
700 &quot;widthPixels&quot;: 42, # The width in pixels.
701 &quot;heightPixels&quot;: 42, # The height in pixels.
702 },
703 ],
704 &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`
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800705 &quot;A String&quot;,
706 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800707 &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`
708 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
709 &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`
710 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800711 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager 360 placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800712 &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`
713 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
714 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
715 },
716 &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.
717 &quot;A String&quot;,
718 ],
719 &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`
720 &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.
721 &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`
722 &quot;widthPixels&quot;: 42, # The width in pixels.
723 &quot;heightPixels&quot;: 42, # The height in pixels.
724 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800725 &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`
726 { # Asset association for the creative.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800727 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800728 &quot;asset&quot;: { # A single asset. # The associated asset.
729 &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.
730 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
731 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800732 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700733 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800734 &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.
735 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
736 &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`
737 &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.
738 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
739 &quot;A String&quot;,
740 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800741 &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`
742 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
743 &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
744 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700745 },
746 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800747 &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`
748 &quot;A String&quot;,
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800749 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800750 &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`
751 &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`
752 &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`
753 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
754 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
755 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
756 { # Exchange review status for the creative.
757 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
758 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800759 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800760 ],
761 &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.
762 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
763 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
764 { # Publisher review status for the creative.
765 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
766 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
767 },
768 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800769 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800770 &quot;cmTrackingAd&quot;: { # A Campaign Manager 360 tracking ad. # The Campaign Manager 360 tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager 360 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.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800771 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager 360 tracking Ad.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800772 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager 360 tracking Ad.
773 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager 360 tracking Ad.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800774 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800775 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700776 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800777 &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 -0700778 }</pre>
779</div>
780
781<div class="method">
782 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
783 <pre>Retrieves the next page of results.
784
785Args:
786 previous_request: The request for the previous page. (required)
787 previous_response: The response from the request for the previous page. (required)
788
789Returns:
790 A request object that you can call &#x27;execute()&#x27; on to request the next
791 page. Returns None if there are no more items in the collection.
792 </pre>
793</div>
794
795<div class="method">
796 <code class="details" id="patch">patch(advertiserId, creativeId, body=None, updateMask=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700797 <pre>Updates an existing creative. Returns the updated creative if successful.
Bu Sun Kim65020912020-05-20 12:08:20 -0700798
799Args:
800 advertiserId: string, Output only. The unique ID of the advertiser the creative belongs to. (required)
801 creativeId: string, Output only. The unique ID of the creative. Assigned by the system. (required)
802 body: object, The request body.
803 The object takes the form of:
804
805{ # A single Creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800806 &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`
807 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
808 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
809 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800810 &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.
811 { # Timer event of the creative.
812 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
813 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
814 },
815 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800816 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
817 &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`
818 &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`
819 &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.
820 { # Counter event of the creative.
821 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
822 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
823 },
824 ],
825 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
826 &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`
827 { # Represents information about the transcoded audio or video file.
828 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
829 &quot;widthPixels&quot;: 42, # The width in pixels.
830 &quot;heightPixels&quot;: 42, # The height in pixels.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800831 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800832 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
833 &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.
834 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
835 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
836 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
837 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
838 &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.
839 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
840 },
841 ],
842 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
843 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
844 &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.
845 { # Exit event of the creative.
846 &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.
847 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
848 &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`
849 &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.
850 },
851 ],
852 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
853 &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 360 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`
854 &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`
855 &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`
856 &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
857 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
858 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
859 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
860 &quot;widthPixels&quot;: 42, # The width in pixels.
861 &quot;heightPixels&quot;: 42, # The height in pixels.
862 },
863 &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
864 &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
865 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
866 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700867 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800868 &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`
869 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
870 &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`
871 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
872 &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`
873 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
874 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
875 },
876 &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.
877 { # Dimensions.
878 &quot;widthPixels&quot;: 42, # The width in pixels.
879 &quot;heightPixels&quot;: 42, # The height in pixels.
880 },
881 ],
882 &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`
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800883 &quot;A String&quot;,
884 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800885 &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`
886 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
887 &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`
888 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800889 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager 360 placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800890 &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`
891 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
892 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
893 },
894 &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.
895 &quot;A String&quot;,
896 ],
897 &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`
898 &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.
899 &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`
900 &quot;widthPixels&quot;: 42, # The width in pixels.
901 &quot;heightPixels&quot;: 42, # The height in pixels.
902 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800903 &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`
904 { # Asset association for the creative.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800905 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800906 &quot;asset&quot;: { # A single asset. # The associated asset.
907 &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.
908 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
909 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700910 },
911 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800912 &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.
913 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
914 &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`
915 &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.
916 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
917 &quot;A String&quot;,
918 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800919 &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`
920 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
921 &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
922 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800923 },
924 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800925 &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`
926 &quot;A String&quot;,
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800927 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800928 &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`
929 &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`
930 &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`
931 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
932 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
933 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
934 { # Exchange review status for the creative.
935 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
936 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800937 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800938 ],
939 &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.
940 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
941 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
942 { # Publisher review status for the creative.
943 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
944 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
945 },
946 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800947 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800948 &quot;cmTrackingAd&quot;: { # A Campaign Manager 360 tracking ad. # The Campaign Manager 360 tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager 360 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.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800949 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager 360 tracking Ad.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800950 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager 360 tracking Ad.
951 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager 360 tracking Ad.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800952 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800953 }
Bu Sun Kim65020912020-05-20 12:08:20 -0700954
955 updateMask: string, Required. The mask to control which fields to update.
956 x__xgafv: string, V1 error format.
957 Allowed values
958 1 - v1 error format
959 2 - v2 error format
960
961Returns:
962 An object of the form:
963
964 { # A single Creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800965 &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`
966 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
967 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
968 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800969 &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.
970 { # Timer event of the creative.
971 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the timer event.
972 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this timer event in reports.
973 },
974 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800975 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was created. Assigned by the system.
976 &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`
977 &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`
978 &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.
979 { # Counter event of the creative.
980 &quot;name&quot;: &quot;A String&quot;, # Required. The name of the counter event.
981 &quot;reportingName&quot;: &quot;A String&quot;, # Required. The name used to identify this counter event in reports.
982 },
983 ],
984 &quot;creativeId&quot;: &quot;A String&quot;, # Output only. The unique ID of the creative. Assigned by the system.
985 &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`
986 { # Represents information about the transcoded audio or video file.
987 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the transcoded video.
988 &quot;widthPixels&quot;: 42, # The width in pixels.
989 &quot;heightPixels&quot;: 42, # The height in pixels.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800990 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800991 &quot;name&quot;: &quot;A String&quot;, # The name of the transcoded file.
992 &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.
993 &quot;mimeType&quot;: &quot;A String&quot;, # The MIME type of the transcoded file.
994 &quot;bitRateKbps&quot;: &quot;A String&quot;, # The transcoding bit rate of the transcoded video, in kilobits per second.
995 &quot;fileSizeBytes&quot;: &quot;A String&quot;, # The size of the transcoded file, in bytes.
996 &quot;frameRate&quot;: 3.14, # The frame rate of the transcoded video, in frames per second.
997 &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.
998 &quot;transcoded&quot;: True or False, # Indicates if the transcoding was successful.
999 },
1000 ],
1001 &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the creative.
1002 &quot;advertiserId&quot;: &quot;A String&quot;, # Output only. The unique ID of the advertiser the creative belongs to.
1003 &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.
1004 { # Exit event of the creative.
1005 &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.
1006 &quot;type&quot;: &quot;A String&quot;, # Required. The type of the exit event.
1007 &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`
1008 &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.
1009 },
1010 ],
1011 &quot;hostingSource&quot;: &quot;A String&quot;, # Required. Indicates where the creative is hosted.
1012 &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 360 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`
1013 &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`
1014 &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`
1015 &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
1016 &quot;position&quot;: &quot;A String&quot;, # The position of the OBA icon on the creative.
1017 &quot;resourceUrl&quot;: &quot;A String&quot;, # The URL of the OBA icon resource.
1018 &quot;dimensions&quot;: { # Dimensions. # The dimensions of the OBA icon.
1019 &quot;widthPixels&quot;: 42, # The width in pixels.
1020 &quot;heightPixels&quot;: 42, # The height in pixels.
1021 },
1022 &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
1023 &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
1024 &quot;program&quot;: &quot;A String&quot;, # The program of the OBA icon. For example: “AdChoices”.
1025 &quot;resourceMimeType&quot;: &quot;A String&quot;, # The MIME type of the OBA icon resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001026 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001027 &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`
1028 &quot;appendedTag&quot;: &quot;A String&quot;, # Third-party HTML tracking tag to be appended to the creative tag.
1029 &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`
1030 &quot;creativeType&quot;: &quot;A String&quot;, # Required. Immutable. The type of the creative.
1031 &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`
1032 &quot;id&quot;: &quot;A String&quot;, # The unique creative identifier.
1033 &quot;registry&quot;: &quot;A String&quot;, # The registry provides unique creative identifiers.
1034 },
1035 &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.
1036 { # Dimensions.
1037 &quot;widthPixels&quot;: 42, # The width in pixels.
1038 &quot;heightPixels&quot;: 42, # The height in pixels.
1039 },
1040 ],
1041 &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`
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001042 &quot;A String&quot;,
1043 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001044 &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`
1045 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp when the creative was last updated. Assigned by the system.
1046 &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`
1047 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001048 &quot;cmPlacementId&quot;: &quot;A String&quot;, # Output only. The unique ID of the Campaign Manager 360 placement associated with the creative. This field is only applicable for creatives that are synced from Campaign Manager.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001049 &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`
1050 &quot;seconds&quot;: &quot;A String&quot;, # The offset in seconds from the start of the audio or video.
1051 &quot;percentage&quot;: &quot;A String&quot;, # The offset in percentage of the audio or video duration.
1052 },
1053 &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.
1054 &quot;A String&quot;,
1055 ],
1056 &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`
1057 &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.
1058 &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`
1059 &quot;widthPixels&quot;: 42, # The width in pixels.
1060 &quot;heightPixels&quot;: 42, # The height in pixels.
1061 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001062 &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`
1063 { # Asset association for the creative.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001064 &quot;role&quot;: &quot;A String&quot;, # The role of this asset for the creative.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001065 &quot;asset&quot;: { # A single asset. # The associated asset.
1066 &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.
1067 &quot;content&quot;: &quot;A String&quot;, # The asset content. For uploaded assets, the content is the serving path.
1068 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001069 },
1070 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001071 &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.
1072 &quot;dynamic&quot;: True or False, # Output only. Indicates whether the creative is dynamic.
1073 &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`
1074 &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.
1075 &quot;creativeAttributes&quot;: [ # Output only. A list of attributes of the creative that is generated by the system.
1076 &quot;A String&quot;,
1077 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001078 &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`
1079 { # Tracking URLs from third parties to track interactions with an audio or a video creative.
1080 &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
1081 &quot;type&quot;: &quot;A String&quot;, # The type of interaction needs to be tracked by the tracking URL
Yoshi Automation Botc2228be2020-11-24 15:48:03 -08001082 },
1083 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001084 &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`
1085 &quot;A String&quot;,
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001086 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001087 &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`
1088 &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`
1089 &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`
1090 &quot;reviewStatus&quot;: { # Review statuses for the creative. # Output only. The current status of the creative review process.
1091 &quot;creativeAndLandingPageReviewStatus&quot;: &quot;A String&quot;, # Creative and landing page review status for the creative.
1092 &quot;exchangeReviewStatuses&quot;: [ # Exchange review statuses for the creative.
1093 { # Exchange review status for the creative.
1094 &quot;exchange&quot;: &quot;A String&quot;, # The exchange reviewing the creative.
1095 &quot;status&quot;: &quot;A String&quot;, # Status of the exchange review.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001096 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001097 ],
1098 &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.
1099 &quot;contentAndPolicyReviewStatus&quot;: &quot;A String&quot;, # Content and policy review status for the creative.
1100 &quot;publisherReviewStatuses&quot;: [ # Publisher review statuses for the creative.
1101 { # Publisher review status for the creative.
1102 &quot;status&quot;: &quot;A String&quot;, # Status of the publisher review.
1103 &quot;publisherName&quot;: &quot;A String&quot;, # The publisher reviewing the creative.
1104 },
1105 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -08001106 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001107 &quot;cmTrackingAd&quot;: { # A Campaign Manager 360 tracking ad. # The Campaign Manager 360 tracking ad associated with the creative. Optional for the following creative_type when created by an advertiser that uses both Campaign Manager 360 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.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -08001108 &quot;cmCreativeId&quot;: &quot;A String&quot;, # The creative ID of the campaign manager 360 tracking Ad.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001109 &quot;cmAdId&quot;: &quot;A String&quot;, # The ad ID of the campaign manager 360 tracking Ad.
1110 &quot;cmPlacementId&quot;: &quot;A String&quot;, # The placement ID of the campaign manager 360 tracking Ad.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -08001111 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -08001112 }</pre>
Bu Sun Kim65020912020-05-20 12:08:20 -07001113</div>
1114
1115</body></html>