package androidx.privacysandbox.ads.adservices.adselection; import android.net.Uri; import kotlin.jvm.internal.Intrinsics; /* loaded from: classes.dex */ public final class AdSelectionOutcome { private final long adSelectionId; private final Uri renderUri; public final long getAdSelectionId() { return this.adSelectionId; } public final Uri getRenderUri() { return this.renderUri; } public AdSelectionOutcome(long j, Uri renderUri) { Intrinsics.checkNotNullParameter(renderUri, "renderUri"); this.adSelectionId = j; this.renderUri = renderUri; } public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof AdSelectionOutcome)) { return false; } AdSelectionOutcome adSelectionOutcome = (AdSelectionOutcome) obj; return this.adSelectionId == adSelectionOutcome.adSelectionId && Intrinsics.areEqual(this.renderUri, adSelectionOutcome.renderUri); } public int hashCode() { return (Long.hashCode(this.adSelectionId) * 31) + this.renderUri.hashCode(); } public String toString() { return "AdSelectionOutcome: adSelectionId=" + this.adSelectionId + ", renderUri=" + this.renderUri; } }