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,
videoOverride?: {
mimes?: string[],
minduration?: number,
maxduration?: number,
protocols?: number[],
protocol?: number,
w?: number,
h?: number,
startdelay?: number,
linearity?: number,
skip?: number,
skipmin?: number,
skipafter?: number,
sequence?: number,
battr?: number[],
maxextended?: number,
minbitrate?: number,
maxbitrate?: number,
boxingallowed?: number,
playbackmethod?: number[],
playbackend?: number,
placement?: number,
plcmt?: number,
delivery?: number[],
pos?: number,
api?: number[],
companiontype?: number[],
},
sspFloorPrice?: {
[K in SspList]?: {
cpm: number,
currency: 'EUR' | 'USD',
}
},
floorPerSize?: Record<string, {
cpm: number,
currency: 'EUR' | 'USD',
}>,
countryFloorPrice?: Record<string, {
cpm: number,
currency: 'EUR' | 'USD',
}>,
floorPerCountryPerSsp?: {
[country: string]: {
[K in SspList]?: {
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[]
},
schain?: {
[K in SspList]?: { asi: string, sid: string }
},
};Feature Descriptions
Price Adjustment Features
auctionForcedPrice
auctionFixedPrice
sspFixedPrice
sspAdjustment
dealidAdjustment
dealidFixedPrice
Floor Price Features
sspFloorPrice
floorPerSize
countryFloorPrice
floorPerCountryPerSsp
SSP Restriction Features
formatRestriction
sspCountryWhitelist
sspCountryBlacklist
sspDomainWhitelist
sspDomainBlacklist
Partner-Specific Features
appnexusPmtRule / stailaPmtRule
videoPlcmtOverride
videoOverride
Field
Type
Description
Supply Chain Features
schain
Priority Order
Examples
Combining Multiple Features
Complex Geo-Targeting Setup
Last updated
Was this helpful?