Files
openrtb/adcom1/api_framework.go
T
2022-05-16 19:20:00 +03:00

20 lines
641 B
Go

package adcom1
// APIFramework represents API frameworks either supported by a placement or required by an ad.
type APIFramework int64
// API frameworks either supported by a placement or required by an ad.
//
// Values of 500+ hold vendor-specific codes.
const (
APIVPAID10 APIFramework = 1 // VPAID 1.0
APIVPAID20 APIFramework = 2 // VPAID 2.0
APIMRAID10 APIFramework = 3 // MRAID 1.0
APIORMMA APIFramework = 4 // ORMMA
APIMRAID20 APIFramework = 5 // MRAID 2.0
APIMRAID30 APIFramework = 6 // MRAID 3.0
APIOMID10 APIFramework = 7 // OMID 1.0
APISIMID10 APIFramework = 8 // SIMID 1.0
APISIMID11 APIFramework = 9 // SIMID 1.1
)