AddAdSelectionOverrideRequest

public class AddAdSelectionOverrideRequest
extends Object

java.lang.Object
   ↳ android.adservices.adselection.AddAdSelectionOverrideRequest


This POJO represents the TestAdSelectionManager.overrideAdSelectionConfigRemoteInfo(android.adservices.adselection.AddAdSelectionOverrideRequest, java.util.concurrent.Executor, android.os.OutcomeReceiver) request

It contains, a AdSelectionConfig which will serve as the identifier for the specific override, a String decisionLogicJs and String trustedScoringSignals field representing the override value

Summary

Public constructors

AddAdSelectionOverrideRequest(AdSelectionConfig adSelectionConfig, String decisionLogicJs, AdSelectionSignals trustedScoringSignals, PerBuyerDecisionLogic perBuyerDecisionLogic)

Builds a AddAdSelectionOverrideRequest instance.

AddAdSelectionOverrideRequest(AdSelectionConfig adSelectionConfig, String decisionLogicJs, AdSelectionSignals trustedScoringSignals)

Builds a AddAdSelectionOverrideRequest instance.

Public methods

AdSelectionConfig getAdSelectionConfig()
String getDecisionLogicJs()
PerBuyerDecisionLogic getPerBuyerDecisionLogic()
AdSelectionSignals getTrustedScoringSignals()

Inherited methods

Public constructors

AddAdSelectionOverrideRequest

Added in API level 34
public AddAdSelectionOverrideRequest (AdSelectionConfig adSelectionConfig, 
                String decisionLogicJs, 
                AdSelectionSignals trustedScoringSignals, 
                PerBuyerDecisionLogic perBuyerDecisionLogic)

Builds a AddAdSelectionOverrideRequest instance.

Parameters
adSelectionConfig AdSelectionConfig: configuration for ad selection. See AdSelectionConfig This value cannot be null.

decisionLogicJs String: override for scoring logic. See AdSelectionConfig.getDecisionLogicUri() This value cannot be null.

trustedScoringSignals AdSelectionSignals: override for trusted seller signals. See AdSelectionConfig.getTrustedScoringSignalsUri() This value cannot be null.

perBuyerDecisionLogic PerBuyerDecisionLogic: override for buyer's reporting logic for contextual ads. See SignedContextualAds#getDecisionLogicUri() This value cannot be null.

AddAdSelectionOverrideRequest

Added in API level 34
public AddAdSelectionOverrideRequest (AdSelectionConfig adSelectionConfig, 
                String decisionLogicJs, 
                AdSelectionSignals trustedScoringSignals)

Builds a AddAdSelectionOverrideRequest instance.

Parameters
adSelectionConfig AdSelectionConfig: configuration for ad selection. See AdSelectionConfig This value cannot be null.

decisionLogicJs String: override for scoring logic. See AdSelectionConfig.getDecisionLogicUri() This value cannot be null.

trustedScoringSignals AdSelectionSignals: override for trusted seller signals. See AdSelectionConfig.getTrustedScoringSignalsUri() This value cannot be null.

Public methods

getAdSelectionConfig

public AdSelectionConfig getAdSelectionConfig ()

Returns
AdSelectionConfig an instance of AdSelectionConfig, the configuration of the ad selection process. This configuration provides the data necessary to run Ad Selection flow that generates bids and scores to find a wining ad for rendering. This value cannot be null.

getDecisionLogicJs

public String getDecisionLogicJs ()

Returns
String The override javascript result, should be a string that contains valid JS code. The code should contain the scoring logic that will be executed during Ad selection. This value cannot be null.

getPerBuyerDecisionLogic

public PerBuyerDecisionLogic getPerBuyerDecisionLogic ()

Returns
PerBuyerDecisionLogic The override for the decision logic for each buyer that is used by contextual ads for reporting, which may be extended to updating bid values for contextual ads in the future This value cannot be null.

getTrustedScoringSignals

public AdSelectionSignals getTrustedScoringSignals ()

Returns
AdSelectionSignals The override trusted scoring signals, should be a valid json string. The trusted signals would be fed into the scoring logic during Ad Selection. This value cannot be null.