Wiki

Clone wiki

REACT native plugin / 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

#!javascript

RNAatkit.setTargetingInfoForInFeedBannerPlacement(
    "InFeedBannerPlacement",
    {
        "abc" : [
            "123",
            "456",
            "789"
        ],
        "def" : [
            "xyz",
            "zyx"
        ]
    }
);

Updated