- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
36 lines
1.0 KiB
Java
36 lines
1.0 KiB
Java
package androidx.privacysandbox.ads.adservices.customaudience;
|
|
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class JoinCustomAudienceRequest {
|
|
private final CustomAudience customAudience;
|
|
|
|
public final CustomAudience getCustomAudience() {
|
|
return this.customAudience;
|
|
}
|
|
|
|
public JoinCustomAudienceRequest(CustomAudience customAudience) {
|
|
Intrinsics.checkNotNullParameter(customAudience, "customAudience");
|
|
this.customAudience = customAudience;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj instanceof JoinCustomAudienceRequest) {
|
|
return Intrinsics.areEqual(this.customAudience, ((JoinCustomAudienceRequest) obj).customAudience);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.customAudience.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "JoinCustomAudience: customAudience=" + this.customAudience;
|
|
}
|
|
}
|