Builder

class Builder
kotlin.Any
   ↳ android.adservices.customaudience.CustomAudience.Builder

Builder for CustomAudience objects.

Summary

Public constructors

Public methods
CustomAudience

Builds an instance of a CustomAudience.

CustomAudience.Builder
setActivationTime(activationTime: Instant?)

Sets the time, truncated to milliseconds, after which the CustomAudience will serve ads.

CustomAudience.Builder

Sets the initial remarketing ads served by the custom audience.

CustomAudience.Builder
setBiddingLogicUri(biddingLogicUri: Uri)

Sets the URI to fetch bidding logic from for use in the ad selection process.

CustomAudience.Builder

Sets the buyer AdTechIdentifier.

CustomAudience.Builder
setDailyUpdateUri(dailyUpdateUri: Uri)

Sets the daily update URI.

CustomAudience.Builder
setExpirationTime(expirationTime: Instant?)

Sets the time, truncated to milliseconds, after which the CustomAudience should be removed.

CustomAudience.Builder
setName(name: String)

Sets the CustomAudience object's name.

CustomAudience.Builder

Sets the trusted bidding data to be queried and used in the ad selection process.

CustomAudience.Builder

Sets the user bidding signals used in the ad selection process.

Public constructors

Builder

Builder()

Public methods

build

fun build(): CustomAudience

Builds an instance of a CustomAudience.

Return
CustomAudience This value cannot be null.
Exceptions
java.lang.NullPointerException if any non-null parameter is null
java.lang.IllegalArgumentException if the expiration time is set before the current time

setActivationTime

fun setActivationTime(activationTime: Instant?): CustomAudience.Builder

Sets the time, truncated to milliseconds, after which the CustomAudience will serve ads.

Set to null in order for this CustomAudience to be immediately active and participate in ad selection.

See getActivationTime() for more information.

Parameters
activationTime Instant?: This value may be null.

setAds

fun setAds(ads: MutableList<AdData!>?): CustomAudience.Builder

Sets the initial remarketing ads served by the custom audience. Will be assigned with an empty list if not provided.

See getAds() for more information.

Parameters
ads MutableList<AdData!>?: This value may be null.
Return
CustomAudience.Builder This value cannot be null.

setBiddingLogicUri

fun setBiddingLogicUri(biddingLogicUri: Uri): CustomAudience.Builder

Sets the URI to fetch bidding logic from for use in the ad selection process. The URI must use HTTPS.

See getBiddingLogicUri() for more information.

Parameters
biddingLogicUri Uri: This value cannot be null.
Return
CustomAudience.Builder This value cannot be null.

setBuyer

fun setBuyer(buyer: AdTechIdentifier): CustomAudience.Builder

Sets the buyer AdTechIdentifier.

See getBuyer() for more information.

Parameters
buyer AdTechIdentifier: This value cannot be null.
Return
CustomAudience.Builder This value cannot be null.

setDailyUpdateUri

fun setDailyUpdateUri(dailyUpdateUri: Uri): CustomAudience.Builder

Sets the daily update URI. The URI must use HTTPS.

See getDailyUpdateUri() for more information.

Parameters
dailyUpdateUri Uri: This value cannot be null.
Return
CustomAudience.Builder This value cannot be null.

setExpirationTime

fun setExpirationTime(expirationTime: Instant?): CustomAudience.Builder

Sets the time, truncated to milliseconds, after which the CustomAudience should be removed.

See getExpirationTime() for more information.

Parameters
expirationTime Instant?: This value may be null.
Return
CustomAudience.Builder This value cannot be null.

setName

fun setName(name: String): CustomAudience.Builder

Sets the CustomAudience object's name.

See getName() for more information.

Parameters
name String: This value cannot be null.
Return
CustomAudience.Builder This value cannot be null.

setTrustedBiddingData

fun setTrustedBiddingData(trustedBiddingData: TrustedBiddingData?): CustomAudience.Builder

Sets the trusted bidding data to be queried and used in the ad selection process.

See getTrustedBiddingData() for more information.

Parameters
trustedBiddingData TrustedBiddingData?: This value may be null.
Return
CustomAudience.Builder This value cannot be null.

setUserBiddingSignals

fun setUserBiddingSignals(userBiddingSignals: AdSelectionSignals?): CustomAudience.Builder

Sets the user bidding signals used in the ad selection process.

See getUserBiddingSignals() for more information.

Parameters
userBiddingSignals AdSelectionSignals?: This value may be null.
Return
CustomAudience.Builder This value cannot be null.