- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
97 lines
2.8 KiB
Java
97 lines
2.8 KiB
Java
package com.ironsource;
|
|
|
|
import com.ironsource.mediationsdk.IronSource;
|
|
import java.util.List;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class iq {
|
|
private final String a;
|
|
private final String b;
|
|
private final List<IronSource.AD_UNIT> c;
|
|
|
|
public iq(String appKey, String str, List<IronSource.AD_UNIT> legacyAdFormats) {
|
|
Intrinsics.checkNotNullParameter(appKey, "appKey");
|
|
Intrinsics.checkNotNullParameter(legacyAdFormats, "legacyAdFormats");
|
|
this.a = appKey;
|
|
this.b = str;
|
|
this.c = legacyAdFormats;
|
|
}
|
|
|
|
public /* synthetic */ iq(String str, String str2, List list, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(str, (i & 2) != 0 ? null : str2, list);
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public static /* synthetic */ iq a(iq iqVar, String str, String str2, List list, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = iqVar.a;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
str2 = iqVar.b;
|
|
}
|
|
if ((i & 4) != 0) {
|
|
list = iqVar.c;
|
|
}
|
|
return iqVar.a(str, str2, list);
|
|
}
|
|
|
|
public final iq a(String appKey, String str, List<IronSource.AD_UNIT> legacyAdFormats) {
|
|
Intrinsics.checkNotNullParameter(appKey, "appKey");
|
|
Intrinsics.checkNotNullParameter(legacyAdFormats, "legacyAdFormats");
|
|
return new iq(appKey, str, legacyAdFormats);
|
|
}
|
|
|
|
public final String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public final void a(List<? extends IronSource.AD_UNIT> adFormats) {
|
|
Intrinsics.checkNotNullParameter(adFormats, "adFormats");
|
|
this.c.clear();
|
|
this.c.addAll(adFormats);
|
|
}
|
|
|
|
public final String b() {
|
|
return this.b;
|
|
}
|
|
|
|
public final List<IronSource.AD_UNIT> c() {
|
|
return this.c;
|
|
}
|
|
|
|
public final String d() {
|
|
return this.a;
|
|
}
|
|
|
|
public final List<IronSource.AD_UNIT> e() {
|
|
return this.c;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof iq)) {
|
|
return false;
|
|
}
|
|
iq iqVar = (iq) obj;
|
|
return Intrinsics.areEqual(this.a, iqVar.a) && Intrinsics.areEqual(this.b, iqVar.b) && Intrinsics.areEqual(this.c, iqVar.c);
|
|
}
|
|
|
|
public final String f() {
|
|
return this.b;
|
|
}
|
|
|
|
public int hashCode() {
|
|
int hashCode = this.a.hashCode() * 31;
|
|
String str = this.b;
|
|
return ((hashCode + (str == null ? 0 : str.hashCode())) * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "SdkInitRequest(appKey=" + this.a + ", userId=" + this.b + ", legacyAdFormats=" + this.c + ')';
|
|
}
|
|
}
|