AI-generated Key Takeaways
-
Creatives, represented in JSON format, contain essential information like advertiser, ad system, title, description, and media files.
-
Media files, also in JSON, include details such as the file's URI, delivery type, dimensions, MIME type, and bitrate range.
-
The Delivery enum defines how the creative content is delivered, either progressively or via streaming.
-
Supported operations on creatives include creation, deletion, and retrieval using designated methods.
Resource: Creative
A Creative resource. Present as response upon completion of PartnerDiscoveryService.CreateCreative.
| JSON representation |
|---|
{ "name": string, "advertiser": string, "adSystem": string, "adTitle": string, "adDescription": string, "mezzanines": [ { object ( |
| Fields | |
|---|---|
name |
Output only. The unique name (Google Video ID) of the Creative resource, in the format creatives/ |
advertiser |
The name of the advertiser featured in this creative. |
adSystem |
Required. The name of ad system generating the ingest request. |
adTitle |
The title of the advertisement. |
adDescription |
The description of the advertisement. |
mezzanines[] |
The ad's mezzanine file URLs and their properties. At least one of mezannines or mediaFiles is required. |
mediaFiles[] |
The ad's media file URLs and their properties. At least one of mezannines or mediaFiles is required. |
networkCode |
Optional. The Google Ad Manager network code of the publisher for which the creative is intended. Required if the creative is dynamic and has DynamicCreativeInfo populated in the CreateCreativeRequest. |
MediaFile
The properties related to a given media file.
| JSON representation |
|---|
{
"uri": string,
"delivery": enum ( |
| Fields | |
|---|---|
uri |
Required. The unique URL to the creative's media file. |
delivery |
Required. The delivery type of the creative. |
height |
The native height of video file, in pixels. |
width |
The native width of video file, in pixels. |
mimeType |
Required. The MIME type for the file container. Popular MIME types include “video/x-flv” for Flash Video and “video/mp4” for MP4. |
minBitrate |
The minimum bitrate of media file. For progressive load video, this value should be the average bitrate. |
maxBitrate |
The maximum bitrate of media file. For progressive load video, this value should be the average bitrate. |
Delivery
Delivery types.
| Enums | |
|---|---|
DELIVERY_UNSPECIFIED |
Default delivery value. |
DELIVERY_PROGRESSIVE |
Progressive video delivery. |
DELIVERY_STREAMING |
Streaming video delivery. |
Methods |
|
|---|---|
|
Creates a Creative. |
|
Deletes a Creative. |
|
Gets a Creative. |