Files
rr3-apk/decompiled/sources/com/ironsource/y4.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

129 lines
2.9 KiB
Java

package com.ironsource;
import java.util.HashMap;
import java.util.Map;
import kotlin.collections.MapsKt__MapsKt;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class y4 {
private final String a;
private final boolean b;
private boolean c;
private String d;
private Map<String, ? extends Object> e;
private com.ironsource.mediationsdk.h f;
private Map<String, Object> g;
public y4(String name, boolean z) {
Map<String, ? extends Object> emptyMap;
Intrinsics.checkNotNullParameter(name, "name");
this.a = name;
this.b = z;
this.d = "";
emptyMap = MapsKt__MapsKt.emptyMap();
this.e = emptyMap;
this.g = new HashMap();
}
public static /* synthetic */ y4 a(y4 y4Var, String str, boolean z, int i, Object obj) {
if ((i & 1) != 0) {
str = y4Var.a;
}
if ((i & 2) != 0) {
z = y4Var.b;
}
return y4Var.a(str, z);
}
public final y4 a(String name, boolean z) {
Intrinsics.checkNotNullParameter(name, "name");
return new y4(name, z);
}
public final String a() {
return this.a;
}
public final void a(com.ironsource.mediationsdk.h hVar) {
this.f = hVar;
}
public final void a(String str) {
Intrinsics.checkNotNullParameter(str, "<set-?>");
this.d = str;
}
public final void a(Map<String, Object> map) {
Intrinsics.checkNotNullParameter(map, "<set-?>");
this.g = map;
}
public final void a(boolean z) {
this.c = z;
}
public final void b(Map<String, ? extends Object> map) {
Intrinsics.checkNotNullParameter(map, "<set-?>");
this.e = map;
}
public final boolean b() {
return this.b;
}
public final Map<String, Object> c() {
return this.g;
}
public final com.ironsource.mediationsdk.h d() {
return this.f;
}
public final boolean e() {
return this.b;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof y4)) {
return false;
}
y4 y4Var = (y4) obj;
return Intrinsics.areEqual(this.a, y4Var.a) && this.b == y4Var.b;
}
public final Map<String, Object> f() {
return this.e;
}
public final String g() {
return this.a;
}
public final String h() {
return this.d;
}
/* JADX WARN: Multi-variable type inference failed */
public int hashCode() {
int hashCode = this.a.hashCode() * 31;
boolean z = this.b;
int i = z;
if (z != 0) {
i = 1;
}
return hashCode + i;
}
public final boolean i() {
return this.c;
}
public String toString() {
return "AuctionRequestInstanceInfo(name=" + this.a + ", bidder=" + this.b + ')';
}
}