setTargetingInfoForInFeedBannerPlacement
Overview
Sets the targeting information for the given in-feed banner placement.
Syntax
setTargetingInfoForInFeedBannerPlacement(placementName, info)
placementName (REQUIRED)
string. Placement identifier.
info (REQUIRED)
The JSON object containing targeting information.
Examples
RNAatkit.setTargetingInfoForInFeedBannerPlacement(
"InFeedBannerPlacement",
{
"abc" : [
"123",
"456",
"789"
],
"def" : [
"xyz",
"zyx"
]
}
);
Last updated