forked from PubMatic-OpenWrap/prebid-openrtb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia_creative_subtype.go
22 lines (20 loc) · 1.08 KB
/
media_creative_subtype.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package adcom1
// MediaCreativeSubtype represents subtypes of audio and video ad creatives.
type MediaCreativeSubtype int8
// Subtypes of audio and video ad creatives.
const (
CreativeVAST10 MediaCreativeSubtype = 1 // VAST 1.0
CreativeVAST20 MediaCreativeSubtype = 2 // VAST 2.0
CreativeVAST30 MediaCreativeSubtype = 3 // VAST 3.0
CreativeVAST10Wrapper MediaCreativeSubtype = 4 // VAST 1.0 Wrapper
CreativeVAST20Wrapper MediaCreativeSubtype = 5 // VAST 2.0 Wrapper
CreativeVAST30Wrapper MediaCreativeSubtype = 6 // VAST 3.0 Wrapper
CreativeVAST40 MediaCreativeSubtype = 7 // VAST 4.0
CreativeVAST40Wrapper MediaCreativeSubtype = 8 // VAST 4.0 Wrapper
CreativeDAAST10 MediaCreativeSubtype = 9 // DAAST 1.0
CreativeDAAST10Wrapper MediaCreativeSubtype = 10 // DAAST 1.0 Wrapper
CreativeVAST41 MediaCreativeSubtype = 11 // VAST 4.1
CreativeVAST41Wrapper MediaCreativeSubtype = 12 // VAST 4.1 Wrapper
CreativeVAST42 MediaCreativeSubtype = 13 // VAST 4.2
CreativeVAST42Wrapper MediaCreativeSubtype = 14 // VAST 4.2 Wrapper
)