AddAdSelectionOverrideRequest

open class AddAdSelectionOverrideRequest
kotlin.Any
   ↳ android.adservices.adselection.AddAdSelectionOverrideRequest

This POJO represents the android.adservices.adselection.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, decisionLogicJs: String, trustedScoringSignals: AdSelectionSignals, buyersDecisionLogic: BuyersDecisionLogic)

Builds a AddAdSelectionOverrideRequest instance.

AddAdSelectionOverrideRequest(adSelectionConfig: AdSelectionConfig, decisionLogicJs: String, trustedScoringSignals: AdSelectionSignals)

Public methods
open AdSelectionConfig

open BuyersDecisionLogic

open String

open AdSelectionSignals

Public constructors

AddAdSelectionOverrideRequest

Added in API level 34
AddAdSelectionOverrideRequest(
    adSelectionConfig: AdSelectionConfig,
    decisionLogicJs: String,
    trustedScoringSignals: AdSelectionSignals,
    buyersDecisionLogic: BuyersDecisionLogic)

Builds a AddAdSelectionOverrideRequest instance.

Parameters
adSelectionConfig AdSelectionConfig: This value cannot be null.
decisionLogicJs String: This value cannot be null.
trustedScoringSignals AdSelectionSignals: This value cannot be null.
buyersDecisionLogic BuyersDecisionLogic: This value cannot be null.

AddAdSelectionOverrideRequest

Added in API level 34
AddAdSelectionOverrideRequest(
    adSelectionConfig: AdSelectionConfig,
    decisionLogicJs: String,
    trustedScoringSignals: AdSelectionSignals)
Parameters
adSelectionConfig AdSelectionConfig: This value cannot be null.
decisionLogicJs String: This value cannot be null.
trustedScoringSignals AdSelectionSignals: This value cannot be null.

Public methods

getAdSelectionConfig

open fun getAdSelectionConfig(): AdSelectionConfig
Return
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.

getBuyersDecisionLogic

open fun getBuyersDecisionLogic(): BuyersDecisionLogic
Return
BuyersDecisionLogic 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.

getDecisionLogicJs

open fun getDecisionLogicJs(): String
Return
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.

getTrustedScoringSignals

open fun getTrustedScoringSignals(): AdSelectionSignals
Return
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.