AdRetryPolicy
data class AdRetryPolicy(val maxAttempts: Int = 2, val initialDelay: Duration = 2.seconds, val maxDelay: Duration = 30.seconds, val backoffMultiplier: Double = 2.0)(source)
Capped exponential-backoff retry policy for ad load failures. Only retryable failures (network, timeout, internal) are retried; non-retryable failures (no fill, consent) are not.