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, perBuyerDecisionLogic: PerBuyerDecisionLogic)

Builds a AddAdSelectionOverrideRequest instance.

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

Builds a AddAdSelectionOverrideRequest instance.

Public methods
open AdSelectionConfig

open String

open PerBuyerDecisionLogic

open AdSelectionSignals

Public constructors

AddAdSelectionOverrideRequest

AddAdSelectionOverrideRequest(
    adSelectionConfig: AdSelectionConfig,
    decisionLogicJs: String,
    trustedScoringSignals: AdSelectionSignals,
    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 android.adservices.adselection.AdSelectionConfig#getDecisionLogicUri() This value cannot be null.
trustedScoringSignals AdSelectionSignals: override for trusted seller signals. See android.adservices.adselection.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

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

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 android.adservices.adselection.AdSelectionConfig#getDecisionLogicUri() This value cannot be null.
trustedScoringSignals AdSelectionSignals: override for trusted seller signals. See android.adservices.adselection.AdSelectionConfig#getTrustedScoringSignalsUri() 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.

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.

getPerBuyerDecisionLogic

open fun getPerBuyerDecisionLogic(): PerBuyerDecisionLogic
Return
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

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.