-
Notifications
You must be signed in to change notification settings - Fork 27
/
vast.go
602 lines (558 loc) · 31.3 KB
/
vast.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
// Package vast implements IAB VAST 4.2 https://iabtechlab.com/wp-content/uploads/2019/06/VAST_4.2_final_june26.pdf
package vast
import "encoding/xml"
// VAST is the root <VAST> tag
type VAST struct {
// The version of the VAST spec (should be either "2.0" or "3.0")
Version string `xml:"version,attr" json:",omitempty"`
// XML namespace. Most likely 'http://www.iab.com/VAST'
XMLNS string `xml:"xmlns,attr,omitempty" json:"xmlns,omitempty"`
// One or more Ad elements. Advertisers and video content publishers may
// associate an <Ad> element with a line item video ad defined in contract
// documentation, usually an insertion order. These line item ads typically
// specify the creative to display, price, delivery schedule, targeting,
// and so on.
Ads []Ad `xml:"Ad,omitempty" json:"Ad,omitempty"`
// Contains a URI to a tracking resource that the video player should request
// upon receiving a “no ad” response
Errors []CDATAString `xml:"Error,omitempty" json:",omitempty"`
Mute bool `xml:"mute,attr,omitempty" json:",omitempty"`
}
// Ad represent an <Ad> child tag in a VAST document
//
// Each <Ad> contains a single <InLine> element or <Wrapper> element (but never both).
type Ad struct {
InLine *InLine `xml:",omitempty" json:",omitempty"`
Wrapper *Wrapper `xml:",omitempty" json:",omitempty"`
// An ad server-defined identifier string for the ad
ID string `xml:"id,attr,omitempty" json:",omitempty"`
// An optional string that identifies the type of ad. This allows VAST to support audio ad scenarios.
// Possible values – video, audio, hybrid.
// Default value – video (assumed to be video if attribute is not present)
AdType string `xml:"adType,attr,omitempty" json:",omitempty"`
// Custom attr
Type string `xml:"type,attr,omitempty" json:",omitempty"`
// A number greater than zero (0) that identifies the sequence in which
// an ad should play; all <Ad> elements with sequence values are part of
// a pod and are intended to be played in sequence
Sequence int `xml:"sequence,attr,omitempty" json:",omitempty"`
// [Deprecated in VAST 4.1, along with apiFramework]
// A Boolean value that identifies a conditional ad.
// In the case of programmatic ad serving, a VPAID ad unit or other mechanism might be used to decide whether there is an ad that matches the placement.
// When there is no match, an ad may not be served.
// Use of the conditionalAd attribute enables publishers to avoid accepting these ads in placements where an ad must be served.
// A value of true indicates that the ad is conditional and should be used in all cases where the InLine executable unit (such as VPAID) is not an ad but is instead a framework for finding an ad;
// a value of false is the default value and indicates that an ad is available.
ConditionalAd bool `xml:"conditionalAd,attr,omitempty" json:",omitempty"`
}
type CDATAString struct {
CDATA string `xml:",cdata" json:"Data"`
}
type PlainString struct {
CDATA string `xml:",chardata" json:"Data"`
}
// <InLine> is a vast <InLine> ad element containing actual ad definition
//
// The last ad server in the ad supply chain serves an <InLine> element.
// Within the nested elements of an <InLine> element are all the files and
// URIs necessary to display the ad.
type InLine struct {
// The name of the ad server that returned the ad
AdSystem *AdSystem
// A URI representing an error-tracking pixel; this element can occur multiple
// times.
Errors []CDATAString `xml:"Error,omitempty" json:"Error,omitempty"`
// XML node for custom extensions, as defined by the ad server. When used, a
// custom element should be nested under <Extensions> to help separate custom
// XML elements from VAST elements. The following example includes a custom
// xml element within the Extensions element.
Extensions *[]Extension `xml:"Extensions>Extension,omitempty" json:",omitempty"`
// One or more URIs that directs the video player to a tracking resource file that the
// video player should request when the first frame of the ad is displayed
Impressions []Impression `xml:"Impression"`
// Provides a value that represents a price that can be used by real-time bidding
// (RTB) systems. VAST is not designed to handle RTB since other methods exist,
// but this element is offered for custom solutions if needed.
Pricing *Pricing `xml:",omitempty" json:",omitempty"`
// Any ad server that returns a VAST containing an <InLine> ad must generate a pseudo- unique identifier
// that is appropriate for all involved parties to track the lifecycle of that ad.
// Example: ServerName-47ed3bac-1768-4b9a-9d0e-0b92422ab066
AdServingId string `xml:",omitempty" json:",omitempty"`
// The common name of the ad
AdTitle PlainString
// The name of the advertiser as defined by the ad serving party.
// This element can be used to prevent displaying ads with advertiser
// competitors. Ad serving parties and publishers should identify how
// to interpret values provided within this element. As with any optional
// elements, the video player is not required to support it.
Advertiser *Advertiser `xml:",omitempty" json:",omitempty"`
Category *[]Category `xml:",omitempty" json:",omitempty"`
// The container for one or more <Creative> elements
Creatives []Creative `xml:"Creatives>Creative"`
// A string value that provides a longer description of the ad.
Description *CDATAString `xml:",omitempty" json:",omitempty"`
// A URI to a survey vendor that could be the survey, a tracking pixel,
// or anything to do with the survey. Multiple survey elements can be provided.
// A type attribute is available to specify the MIME type being served.
// For example, the attribute might be set to type=”text/javascript”.
// Surveys can be dynamically inserted into the VAST response as long as
// cross-domain issues are avoided.
Survey *Survey `xml:",omitempty" json:",omitempty"`
// The number of seconds in which the ad is valid for execution.
//In cases where the ad is requested ahead of time, this timing indicates how many seconds after the request that the ad expires and cannot be played.
//This element is useful for preventing an ad from playing after a timeout has occurred.
Expires *int `xml:"Expires,omitempty" json:"Expires,omitempty"`
// The ad server may provide URIs for tracking publisher-determined viewability,
// for both the InLine ad and any Wrappers, using the <ViewableImpression> element.
// Tracking URIs may be provided in three containers: <Viewable>, <NotViewable>, and <ViewUndetermined>.
ViewableImpression *ViewableImpression `xml:",omitempty" json:",omitempty"`
// The <AdVerifications> element contains one or more <Verification> elements,
// which list the resources and metadata required to execute third-party measurement code in order to verify creative playback.
// The <AdVerifications> element is used to contain one or more <Verification> elements,
// which are used to initiate a controlled container where code can be executed for collecting data to verify ad playback details.
AdVerifications *AdVerifications `xml:"AdVerifications,omitempty" json:",omitempty"`
}
// Impression is a URI that directs the video player to a tracking resource file that
// the video player should request when the first frame of the ad is displayed
type Impression struct {
ID string `xml:"id,attr,omitempty" json:",omitempty"`
URI string `xml:",cdata" `
}
// Pricing provides a value that represents a price that can be used by real-time
// bidding (RTB) systems. VAST is not designed to handle RTB since other methods
// exist, but this element is offered for custom solutions if needed.
type Pricing struct {
// Identifies the pricing model as one of "cpm", "cpc", "cpe" or "cpv".
Model string `xml:"model,attr"`
// The 3 letter ISO-4217 currency symbol that identifies the currency of
// the value provided
Currency string `xml:"currency,attr"`
// If the value provided is to be obfuscated/encoded, publishers and advertisers
// must negotiate the appropriate mechanism to do so. When included as part of
// a VAST Wrapper in a chain of Wrappers, only the value offered in the first
// Wrapper need be considered.
Value string `xml:",cdata"`
}
// <Wrapper> element contains a URI reference to a vendor ad server (often called
// a third party ad server). The destination ad server either provides the ad
// files within a VAST <InLine> ad element or may provide a secondary Wrapper
// ad, pointing to yet another ad server. Eventually, the final ad server in
// the ad supply chain must contain all the necessary files needed to display
// the ad.
type Wrapper struct {
// The name of the ad server that returned the ad
AdSystem *AdSystem
// A URI representing an error-tracking pixel; this element can occur multiple
// times.
Errors []CDATAString `xml:"Error,omitempty" json:"Error,omitempty"`
// XML node for custom extensions, as defined by the ad server. When used, a
// custom element should be nested under <Extensions> to help separate custom
// XML elements from VAST elements. The following example includes a custom
// xml element within the Extensions element.
Extensions *[]Extension `xml:"Extensions>Extension,omitempty" json:",omitempty"`
// One or more URIs that directs the video player to a tracking resource file that the
// video player should request when the first frame of the ad is displayed
Impressions []Impression `xml:"Impression"`
// The container for one or more <Creative> elements
Creatives []CreativeWrapper `xml:"Creatives>Creative"`
// URL of ad tag of downstream Secondary Ad Server
VASTAdTagURI CDATAString
// Provides a value that represents a price that can be used by real-time bidding
// (RTB) systems. VAST is not designed to handle RTB since other methods exist,
// but this element is offered for custom solutions if needed.
Pricing *Pricing `xml:",omitempty" json:",omitempty"`
// The ad server may provide URIs for tracking publisher-determined viewability,
// for both the InLine ad and any Wrappers, using the <ViewableImpression> element.
// Tracking URIs may be provided in three containers: <Viewable>, <NotViewable>, and <ViewUndetermined>.
ViewableImpression *ViewableImpression `xml:",omitempty" json:",omitempty"`
// The <AdVerifications> element contains one or more <Verification> elements,
// which list the resources and metadata required to execute third-party measurement code in order to verify creative playback.
// The <AdVerifications> element is used to contain one or more <Verification> elements,
// which are used to initiate a controlled container where code can be executed for collecting data to verify ad playback details.
AdVerifications *AdVerifications `xml:"AdVerifications,omitempty" json:",omitempty"`
FallbackOnNoAd *bool `xml:"fallbackOnNoAd,attr,omitempty" json:",omitempty"`
AllowMultipleAds *bool `xml:"allowMultipleAds,attr,omitempty" json:",omitempty"`
FollowAdditionalWrappers *bool `xml:"followAdditionalWrappers,attr,omitempty" json:",omitempty"`
}
// AdSystem contains information about the system that returned the ad
type AdSystem struct {
Version string `xml:"version,attr,omitempty" json:"Version,omitempty"`
Name string `xml:",chardata" json:"Data"`
}
// Creative is a file that is part of a VAST ad.
type Creative struct {
// An ad server-defined identifier for the creative
ID string `xml:"id,attr,omitempty" json:",omitempty"`
// The preferred order in which multiple Creatives should be displayed
Sequence int `xml:"sequence,attr,omitempty" json:",omitempty"`
// Identifies the ad with which the creative is served
AdID string `xml:"adId,attr,omitempty" json:",omitempty"`
// The technology used for any included API
APIFramework string `xml:"apiFramework,attr,omitempty" json:",omitempty"`
// If present, provides a VAST 4.x universal ad id
UniversalAdID *[]UniversalAdID `xml:"UniversalAdId,omitempty" json:",omitempty"`
// If present, defines a linear creative
Linear *Linear `xml:",omitempty" json:",omitempty"`
// If defined, defins companions creatives
CompanionAds *CompanionAds `xml:",omitempty" json:",omitempty"`
// If defined, defines non linear creatives
NonLinearAds *NonLinearAds `xml:",omitempty" json:",omitempty"`
// When an API framework is needed to execute creative, a
// <CreativeExtensions> element can be added under the <Creative>. This
// extension can be used to load an executable creative with or without using
// a media file.
// A <CreativeExtension> element is nested under the <CreativeExtensions>
// (plural) element so that any xml extensions are separated from VAST xml.
// Additionally, any xml used in this extension should identify an xml name
// space (xmlns) to avoid confusing any of the xml element names with those
// of VAST.
// The nested <CreativeExtension> includes an attribute for type, which
// specifies the MIME type needed to execute the extension.
CreativeExtensions *[]Extension `xml:"CreativeExtensions>CreativeExtension,omitempty" json:",omitempty"`
}
// <CompanionAds> contains companions creatives
type CompanionAds struct {
// Provides information about which companion creative to display.
// All means that the player must attempt to display all. Any means the player
// must attempt to play at least one. None means all companions are optional
Required string `xml:"required,attr,omitempty" json:",omitempty"`
Companions []Companion `xml:"Companion,omitempty" json:",omitempty"`
}
// NonLinearAds contains non linear creatives
type NonLinearAds struct {
TrackingEvents *TrackingEvents `xml:"TrackingEvents,omitempty" json:",omitempty"`
// Non linear creatives
NonLinears []NonLinear `xml:"NonLinear,omitempty" json:",omitempty"`
}
// <CreativeWrapper> defines wrapped creative's parent trackers
type CreativeWrapper struct {
// An ad server-defined identifier for the creative
ID string `xml:"id,attr,omitempty" json:",omitempty"`
// The preferred order in which multiple Creatives should be displayed
Sequence int `xml:"sequence,attr,omitempty" json:",omitempty"`
// Identifies the ad with which the creative is served
AdID string `xml:"adId,attr,omitempty" json:",omitempty"`
// If present, defines a linear creative
Linear *LinearWrapper `xml:",omitempty" json:",omitempty"`
// If defined, defines companions creatives
CompanionAds *CompanionAds `xml:"CompanionAds,omitempty" json:",omitempty"`
// If defined, defines non linear creatives
NonLinearAds *NonLinearAdsWrapper `xml:"NonLinearAds,omitempty" json:",omitempty"`
}
// <NonLinearAdsWrapper> contains non linear creatives in a wrapper
type NonLinearAdsWrapper struct {
TrackingEvents *TrackingEvents `xml:"TrackingEvents,omitempty" json:",omitempty"`
// Non linear creatives
NonLinears []NonLinearWrapper `xml:"NonLinear,omitempty" json:",omitempty"`
}
// <Linear> is the most common type of video advertisement trafficked in the
// industry is a “linear ad”, which is an ad that displays in the same area
// as the content but not at the same time as the content. In fact, the video
// player must interrupt the content before displaying a linear ad.
// <Linear> ads are often displayed right before the video content plays.
// This ad position is called a “pre-roll” position. For this reason, a linear
// ad is often called a “pre-roll.”
type Linear struct {
// To specify that a Linear creative can be skipped, the ad server must
// include the skipoffset attribute in the <Linear> element. The value
// for skipoffset is a time value in the format HH:MM:SS or HH:MM:SS.mmm
// or a percentage in the format n%. The .mmm value in the time offset
// represents milliseconds and is optional. This skipoffset value
// indicates when the skip control should be provided after the creative
// begins playing.
SkipOffset *Offset `xml:"skipoffset,attr,omitempty" json:",omitempty"`
// Duration in standard time format, hh:mm:ss
Duration Duration `xml:"Duration,omitempty" json:",omitempty"`
Icons *Icons `json:",omitempty"`
TrackingEvents *TrackingEvents `xml:"TrackingEvents,omitempty" json:",omitempty"`
AdParameters *AdParameters `xml:",omitempty" json:",omitempty"`
VideoClicks *VideoClicks `xml:",omitempty" json:",omitempty"`
MediaFiles *MediaFiles `xml:"MediaFiles" json:",omitempty"`
}
// <LinearWrapper> defines a wrapped linear creative
type LinearWrapper struct {
Icons *Icons `json:",omitempty"`
TrackingEvents *TrackingEvents `xml:"TrackingEvents,omitempty" json:",omitempty"`
VideoClicks *VideoClicks `xml:",omitempty" json:",omitempty"`
}
// <Companion> defines a companion ad
type Companion struct {
// Optional identifier
ID string `xml:"id,attr,omitempty" json:",omitempty"`
// Pixel dimensions of companion slot.
Width int `xml:"width,attr,omitempty"`
// Pixel dimensions of companion slot.
Height int `xml:"height,attr,omitempty"`
// Pixel dimensions of the companion asset.
AssetWidth int `xml:"assetWidth,attr,omitempty"`
// Pixel dimensions of the companion asset.
AssetHeight int `xml:"assetHeight,attr,omitempty"`
// Pixel dimensions of expanding companion ad when in expanded state.
ExpandedWidth int `xml:"expandedWidth,attr,omitempty"`
// Pixel dimensions of expanding companion ad when in expanded state.
ExpandedHeight int `xml:"expandedHeight,attr,omitempty"`
// The apiFramework defines the method to use for communication with the companion.
APIFramework string `xml:"apiFramework,attr,omitempty" json:",omitempty"`
// Used to match companion creative to publisher placement areas on the page.
AdSlotID string `xml:"adSlotId,attr,omitempty" json:",omitempty"`
// URL to open as destination page when user clicks on the the companion banner ad.
CompanionClickThrough *CDATAString `xml:",omitempty" json:",omitempty"`
// URLs to ping when user clicks on the the companion banner ad.
CompanionClickTrackings []CompanionClickTracking `xml:"CompanionClickTracking,omitempty" json:",omitempty"`
// Alt text to be displayed when companion is rendered in HTML environment.
AltText string `xml:",omitempty" json:",omitempty"`
// The creativeView should always be requested when present. For Companions
// creativeView is the only supported event.
TrackingEvents *TrackingEvents `xml:"TrackingEvents,omitempty" json:",omitempty"`
// Data to be passed into the companion ads. The apiFramework defines the method
// to use for communication (e.g. “FlashVar”)
AdParameters *AdParameters `xml:",omitempty" json:",omitempty"`
// URL to a static file, such as an image or SWF file
StaticResource *StaticResource `xml:",omitempty" json:",omitempty"`
// URL source for an IFrame to display the companion element
IFrameResource *CDATAString `xml:",omitempty" json:",omitempty"`
// HTML to display the companion element
HTMLResource *HTMLResource `xml:",omitempty" json:",omitempty"`
Pxratio string `xml:"pxratio,attr,omitempty" json:",omitempty"`
RenderingMode string `xml:"renderingMode,attr,omitempty" json:",omitempty"`
}
// <NonLinear> defines a non linear ad
type NonLinear struct {
// Optional identifier
ID string `xml:"id,attr,omitempty" json:",omitempty"`
// Pixel dimensions of companion.
Width int `xml:"width,attr,omitempty"`
// Pixel dimensions of companion.
Height int `xml:"height,attr,omitempty"`
// Pixel dimensions of expanding nonlinear ad when in expanded state.
ExpandedWidth int `xml:"expandedWidth,attr,omitempty"`
// Pixel dimensions of expanding nonlinear ad when in expanded state.
ExpandedHeight int `xml:"expandedHeight,attr,omitempty"`
// Whether it is acceptable to scale the image.
Scalable bool `xml:"scalable,attr,omitempty" json:",omitempty"`
// Whether the ad must have its aspect ratio maintained when scales.
MaintainAspectRatio bool `xml:"maintainAspectRatio,attr,omitempty" json:",omitempty"`
// Suggested duration to display non-linear ad, typically for animation to complete.
// Expressed in standard time format hh:mm:ss.
MinSuggestedDuration *Duration `xml:"minSuggestedDuration,attr,omitempty" json:",omitempty"`
// The apiFramework defines the method to use for communication with the nonlinear element.
APIFramework string `xml:"apiFramework,attr,omitempty" json:",omitempty"`
// HTML to display the companion element
HTMLResource *HTMLResource `xml:",omitempty" json:",omitempty"`
// URL source for an IFrame to display the companion element
IFrameResource *CDATAString `xml:",omitempty" json:",omitempty"`
// URL to a static file, such as an image or SWF file
StaticResource *StaticResource `xml:",omitempty" json:",omitempty"`
// Data to be passed into the video ad.
AdParameters *AdParameters `xml:",omitempty" json:",omitempty"`
// URL to open as destination page when user clicks on the non-linear ad unit.
NonLinearClickThrough *CDATAString `xml:",omitempty" json:",omitempty"`
// URLs to ping when user clicks on the the non-linear ad.
NonLinearClickTrackings []NonLinearClickTracking `xml:"NonLinearClickTracking,omitempty" json:",omitempty"`
}
// <NonLinearWrapper> defines a non linear ad in a wrapper
type NonLinearWrapper struct {
// Optional identifier
ID string `xml:"id,attr,omitempty" json:",omitempty"`
// Pixel dimensions of companion.
Width int `xml:"width,attr,omitempty"`
// Pixel dimensions of companion.
Height int `xml:"height,attr,omitempty"`
// Pixel dimensions of expanding nonlinear ad when in expanded state.
ExpandedWidth int `xml:"expandedWidth,attr,omitempty"`
// Pixel dimensions of expanding nonlinear ad when in expanded state.
ExpandedHeight int `xml:"expandedHeight,attr,omitempty"`
// Whether it is acceptable to scale the image.
Scalable bool `xml:"scalable,attr,omitempty" json:",omitempty"`
// Whether the ad must have its aspect ratio maintained when scales.
MaintainAspectRatio bool `xml:"maintainAspectRatio,attr,omitempty" json:",omitempty"`
// Suggested duration to display non-linear ad, typically for animation to complete.
// Expressed in standard time format hh:mm:ss.
MinSuggestedDuration *Duration `xml:"minSuggestedDuration,attr,omitempty" json:",omitempty"`
// The apiFramework defines the method to use for communication with the nonlinear element.
APIFramework string `xml:"apiFramework,attr,omitempty" json:",omitempty"`
// The creativeView should always be requested when present.
TrackingEvents *TrackingEvents `xml:"TrackingEvents,omitempty" json:",omitempty"`
// URLs to ping when user clicks on the the non-linear ad.
NonLinearClickTracking []CDATAString `xml:",omitempty" json:",omitempty"`
}
type Icons struct {
XMLName xml.Name `xml:"Icons,omitempty" json:",omitempty"`
Icon *[]Icon `xml:"Icon,omitempty" json:",omitempty"`
}
// <Icon> represents advertising industry initiatives like AdChoices.
type Icon struct {
// Identifies the industry initiative that the icon supports.
Program string `xml:"program,attr,omitempty"`
// Pixel dimensions of icon.
Width int `xml:"width,attr,omitempty"`
// Pixel dimensions of icon.
Height int `xml:"height,attr,omitempty"`
// The horizontal alignment location (in pixels) or a specific alignment.
// Must match ([0-9]*|left|right)
XPosition string `xml:"xPosition,attr,omitempty"`
// The vertical alignment location (in pixels) or a specific alignment.
// Must match ([0-9]*|top|bottom)
YPosition string `xml:"yPosition,attr,omitempty"`
// Start time at which the player should display the icon. Expressed in standard time format hh:mm:ss.
Offset Offset `xml:"offset,attr,omitempty"`
// duration for which the player must display the icon. Expressed in standard time format hh:mm:ss.
Duration Duration `xml:"duration,attr,omitempty"`
// The apiFramework defines the method to use for communication with the icon element
APIFramework string `xml:"apiFramework,attr,omitempty" json:",omitempty"`
// The pixel ratio for which the icon creative is intended.
// The pixel ratio is the ratio of physical pixels on the device to the device-independent pixels.
// An ad intended for display on a device with a pixel ratio that is twice that of a standard 1:1 pixel ratio would use the value "2."
// Default value is "1."
Pxratio string `xml:"pxratio,attr,omitempty" json:",omitempty"`
// Alternative text for the image.
// In an html5 image tag this should be the text for the alt attribute.
// This should enable screen readers to properly read back a description of the icon for visually impaired users.
AltText string `xml:"altText,attr,omitempty" json:",omitempty"`
// Hover text for the image.
// In an html5 image tag this should be the text for the title attribute.
HoverText string `xml:"hoverText,attr,omitempty" json:",omitempty"`
// The view tracking for icons is used to track when the icon creative is displayed.
// The player uses the included URI to notify the icon server when the icon has been displayed.
IconViewTracking []CDATAString `xml:",omitempty" json:",omitempty"`
// URL to open as destination page when user clicks on the icon.
IconClickThrough *CDATAString `xml:"IconClicks>IconClickThrough,omitempty" json:",omitempty"`
// URLs to ping when user clicks on the the icon.
IconClickTracking []CDATAString `xml:"IconClicks>IconClickTracking,omitempty" json:",omitempty"`
IconClickFallbackImages *IconClickFallbackImages `xml:"IconClicks>IconClickFallbackImages,omitempty" json:",omitempty"`
// URL to a static file, such as an image or SWF file
StaticResource *StaticResource `xml:",omitempty" json:",omitempty"`
// URL source for an IFrame to display the companion element
IFrameResource *CDATAString `xml:",omitempty" json:",omitempty"`
// HTML to display the companion element
HTMLResource *HTMLResource `xml:",omitempty" json:",omitempty"`
}
// <Tracking> defines an event tracking URL
type Tracking struct {
// The name of the event to track for the element. The creativeView should
// always be requested when present.
//
// Possible values are creativeView, start, firstQuartile, midpoint, thirdQuartile,
// complete, mute, unmute, pause, rewind, resume, fullscreen, exitFullscreen, expand,
// collapse, acceptInvitation, close, skip, progress.
Event string `xml:"event,attr"`
// The time during the video at which this url should be pinged. Must be present for
// progress event. Must match (\d{2}:[0-5]\d:[0-5]\d(\.\d\d\d)?|1?\d?\d(\.?\d)*%)
Offset *Offset `xml:"offset,attr,omitempty" json:",omitempty"`
URI string `xml:",cdata"`
// custom attr
UA string `xml:"ua,attr,omitempty" json:",omitempty"`
}
type TrackingEvents struct {
Tracking []Tracking `xml:"Tracking,omitempty"`
}
// <StaticResource> is the URL to a static file, such as an image or SWF file
type StaticResource struct {
// Mime type of static resource
CreativeType string `xml:"creativeType,attr,omitempty" json:",omitempty"`
// URL to a static file, such as an image or SWF file
URI string `xml:",cdata"`
}
// <HTMLResource> is a container for HTML data
type HTMLResource struct {
// Specifies whether the HTML is XML-encoded
XMLEncoded bool `xml:"xmlEncoded,attr,omitempty" json:",omitempty"`
HTML string `xml:",cdata"`
}
// <AdParameters> defines arbitrary ad parameters
type AdParameters struct {
// Specifies whether the parameters are XML-encoded
XMLEncoded bool `xml:"xmlEncoded,attr,omitempty" json:",omitempty"`
Parameters string `xml:",cdata"`
}
// <VideoClicks> contains types of video clicks
type VideoClicks struct {
ClickTrackings []VideoClick `xml:"ClickTracking,omitempty" json:",omitempty"`
CustomClicks []VideoClick `xml:"CustomClick,omitempty" json:",omitempty"`
ClickThroughs []VideoClick `xml:"ClickThrough,omitempty" json:",omitempty"`
}
// <VideoClick> defines a click URL for a linear creative
type VideoClick struct {
ID string `xml:"id,attr,omitempty" json:",omitempty"`
URI string `xml:",cdata"`
}
// <MediaFile> defines a reference to a linear creative asset
type MediaFile struct {
// Optional identifier
ID string `xml:"id,attr,omitempty" json:",omitempty"`
// Method of delivery of ad (either "streaming" or "progressive")
Delivery string `xml:"delivery,attr"`
// MIME type. Popular MIME types include, but are not limited to
// “video/x-ms-wmv” for Windows Media, and “video/x-flv” for Flash
// Video. Image ads or interactive ads can be included in the
// MediaFiles section with appropriate Mime types
Type string `xml:"type,attr"`
// Bitrate of encoded video in Kbps. If bitrate is supplied, MinBitrate
// and MaxBitrate should not be supplied.
Bitrate int `xml:"bitrate,attr,omitempty" json:",omitempty"`
// Pixel dimensions of video.
Width int `xml:"width,attr"`
// Pixel dimensions of video.
Height int `xml:"height,attr"`
// Minimum bitrate of an adaptive stream in Kbps. If MinBitrate is supplied,
// MaxBitrate must be supplied and Bitrate should not be supplied.
MinBitrate int `xml:"minBitrate,attr,omitempty" json:",omitempty"`
// Maximum bitrate of an adaptive stream in Kbps. If MaxBitrate is supplied,
// MinBitrate must be supplied and Bitrate should not be supplied.
MaxBitrate int `xml:"maxBitrate,attr,omitempty" json:",omitempty"`
// Whether it is acceptable to scale the image.
Scalable bool `xml:"scalable,attr,omitempty" json:",omitempty"`
// Whether the ad must have its aspect ratio maintained when scales.
MaintainAspectRatio bool `xml:"maintainAspectRatio,attr,omitempty" json:",omitempty"`
// The codec used to produce the media file.
Codec string `xml:"codec,attr,omitempty" json:",omitempty"`
// The APIFramework defines the method to use for communication if the MediaFile
// is interactive. Suggested values for this element are “VPAID”, “FlashVars”
// (for Flash/Flex), “initParams” (for Silverlight) and “GetVariables” (variables
// placed in key/value pairs on the asset request).
APIFramework string `xml:"apiFramework,attr,omitempty" json:",omitempty"`
URI string `xml:",cdata"`
// Label
Label string `xml:"label,attr,omitempty" json:",omitempty"`
// Optional field that helps eliminate the need to calculate the size based on bitrate and duration.
// Units - Bytes
FileSize int `xml:"fileSize,attr,omitempty" json:",omitempty"`
// Type of media file (2D / 3D / 360 / etc). Optional.
// Default value = 2D
MediaType string `xml:"mediaType,attr,omitempty" json:",omitempty"`
}
// <UniversalAdID> describes a VAST 4.x universal ad id.
type UniversalAdID struct {
IDRegistry string `xml:"idRegistry,attr"`
ID string `xml:",chardata"`
}
// CompanionClickTracking element is used to track the click
type CompanionClickTracking struct {
// An id provided by the ad server to track the click in reports.
ID string `xml:"id,attr,omitempty" json:",omitempty"`
URI string `xml:",cdata"`
}
// NonLinearClickTracking element is used to track the click
type NonLinearClickTracking struct {
// An id provided by the ad server to track the click in reports
ID string `xml:"id,attr,omitempty" json:",omitempty"`
URI string `xml:",cdata"`
}
type Category struct {
Authority string `xml:"authority,attr"`
Category string `xml:",chardata"`
}
type Survey struct {
// A type attribute is available to specify the MIME type being served. For example,
// the attribute might be set to type="text/javascript".
// Surveys can be dynamically inserted into the VAST response as long as cross-domain issues are avoided.
Type string `xml:"type,attr"`
// A URI to any resource relating to an integrated survey.
URI string `xml:",cdata"`
}
type MediaFiles struct {
MediaFile []MediaFile `xml:",omitempty" json:",omitempty"`
Mezzanine []Mezzanine `xml:",omitempty" json:",omitempty"`
InteractiveCreativeFile []InteractiveCreativeFile `xml:",omitempty" json:",omitempty"`
ClosedCaptionFiles *[]ClosedCaptionFile `xml:"ClosedCaptionFiles>ClosedCaptionFile,omitempty" json:",omitempty"`
}