mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
22 lines
702 B
Go
22 lines
702 B
Go
package native1
|
|
|
|
// 7.1 Native Layout IDs in version 1.1.
|
|
// Deprecated/removed in version 1.2.
|
|
//
|
|
// Below is a list of the core layouts described in the introduction above.
|
|
//
|
|
// An implementing exchange may not support all asset variants or introduce new ones unique to that system.
|
|
type Layout int64
|
|
|
|
const (
|
|
LayoutContentWall Layout = 1 // Content Wall
|
|
LayoutAppWall Layout = 2 // App Wall
|
|
LayoutNewsFeed Layout = 3 // News Feed
|
|
LayoutChatList Layout = 4 // Chat List
|
|
LayoutCarousel Layout = 5 // Carousel
|
|
LayoutContentStream Layout = 6 // Content Stream
|
|
LayoutGrid Layout = 7 // Grid adjoining the content
|
|
|
|
// 500+ Reserved for Exchange specific layouts.
|
|
)
|