forked from prebid/openrtb
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontent_context.go
17 lines (15 loc) · 1.08 KB
/
content_context.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package adcom1
// ContentContext represents options for indicating the type of content being used or consumed by the user in which ads may appear.
// This table has values derived from the TAG Inventory Quality Guidelines (IQG).
type ContentContext int8
// Options for indicating the type of content being used or consumed by the user in which ads may appear.
// This table has values derived from the TAG Inventory Quality Guidelines (IQG).
const (
ContentVideo ContentContext = 1 // 1 Video (i.e., video file or stream such as Internet TV broadcasts)
ContentGame ContentContext = 2 // 2 Game (i.e., an interactive software game)
ContentMusic ContentContext = 3 // 3 Music (i.e., audio file or stream such as Internet radio broadcasts)
ContentApp ContentContext = 4 // 4 Application (i.e., an interactive software application)
ContentText ContentContext = 5 // 5 Text (i.e., primarily textual document such as a web page, eBook, or news article)
ContentOther ContentContext = 6 // 6 Other (i.e., none of the other categories applies)
ContentUnknown ContentContext = 7 // 7 Unknown
)