Extra Feature module
export type ExtraFeatures = {
auctionForcedPrice?: {
cpm: number,
currency: 'EUR' | 'USD',
},
auctionFixedPrice?: {
cpm: number
currency: 'EUR' | 'USD',
},
sspFixedPrice?: {
[K in SspList]?: {
cpm: number
currency: 'EUR' | 'USD',
}
},
formatRestriction?: {
[K in SspList]?: Mediatype[]
},
appnexusPmtRule?: boolean,
stailaPmtRule?: boolean,
sspAdjustment?: {
[K in SspList]?: number
},
dealidAdjustment?: Record<string, number>,
dealidFixedPrice?: Record<string, {
cpm: number,
currency: 'EUR' | 'USD',
}>,
videoPlcmtOverride?: number,
sspFloorPrice?: {
[K in SspList]?: {
cpm: number,
currency: 'EUR' | 'USD',
}
},
countryFloorPrice?: Record<string, {
cpm: number,
currency: 'EUR' | 'USD',
}>,
sspCountryWhitelist?: {
[K in SspList]?: string[]
},
sspCountryBlacklist?: {
[K in SspList]?: string[]
},
sspDomainWhitelist?: {
[K in SspList]?: string[]
},
sspDomainBlacklist?: {
[K in SspList]?: string[]
},
};Last updated
Was this helpful?