- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
115 lines
3.3 KiB
Java
115 lines
3.3 KiB
Java
package com.ironsource;
|
|
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import org.json.JSONObject;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class c5 {
|
|
private final String a;
|
|
private final JSONObject b;
|
|
private final f5 c;
|
|
private final int d;
|
|
private final String e;
|
|
|
|
public c5(String auctionId, JSONObject auctionResponseGenericParam, f5 f5Var, int i, String auctionFallback) {
|
|
Intrinsics.checkNotNullParameter(auctionId, "auctionId");
|
|
Intrinsics.checkNotNullParameter(auctionResponseGenericParam, "auctionResponseGenericParam");
|
|
Intrinsics.checkNotNullParameter(auctionFallback, "auctionFallback");
|
|
this.a = auctionId;
|
|
this.b = auctionResponseGenericParam;
|
|
this.c = f5Var;
|
|
this.d = i;
|
|
this.e = auctionFallback;
|
|
}
|
|
|
|
public static /* synthetic */ c5 a(c5 c5Var, String str, JSONObject jSONObject, f5 f5Var, int i, String str2, int i2, Object obj) {
|
|
if ((i2 & 1) != 0) {
|
|
str = c5Var.a;
|
|
}
|
|
if ((i2 & 2) != 0) {
|
|
jSONObject = c5Var.b;
|
|
}
|
|
JSONObject jSONObject2 = jSONObject;
|
|
if ((i2 & 4) != 0) {
|
|
f5Var = c5Var.c;
|
|
}
|
|
f5 f5Var2 = f5Var;
|
|
if ((i2 & 8) != 0) {
|
|
i = c5Var.d;
|
|
}
|
|
int i3 = i;
|
|
if ((i2 & 16) != 0) {
|
|
str2 = c5Var.e;
|
|
}
|
|
return c5Var.a(str, jSONObject2, f5Var2, i3, str2);
|
|
}
|
|
|
|
public final c5 a(String auctionId, JSONObject auctionResponseGenericParam, f5 f5Var, int i, String auctionFallback) {
|
|
Intrinsics.checkNotNullParameter(auctionId, "auctionId");
|
|
Intrinsics.checkNotNullParameter(auctionResponseGenericParam, "auctionResponseGenericParam");
|
|
Intrinsics.checkNotNullParameter(auctionFallback, "auctionFallback");
|
|
return new c5(auctionId, auctionResponseGenericParam, f5Var, i, auctionFallback);
|
|
}
|
|
|
|
public final String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public final JSONObject b() {
|
|
return this.b;
|
|
}
|
|
|
|
public final f5 c() {
|
|
return this.c;
|
|
}
|
|
|
|
public final int d() {
|
|
return this.d;
|
|
}
|
|
|
|
public final String e() {
|
|
return this.e;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof c5)) {
|
|
return false;
|
|
}
|
|
c5 c5Var = (c5) obj;
|
|
return Intrinsics.areEqual(this.a, c5Var.a) && Intrinsics.areEqual(this.b, c5Var.b) && Intrinsics.areEqual(this.c, c5Var.c) && this.d == c5Var.d && Intrinsics.areEqual(this.e, c5Var.e);
|
|
}
|
|
|
|
public final String f() {
|
|
return this.e;
|
|
}
|
|
|
|
public final String g() {
|
|
return this.a;
|
|
}
|
|
|
|
public final JSONObject h() {
|
|
return this.b;
|
|
}
|
|
|
|
public int hashCode() {
|
|
int hashCode = ((this.a.hashCode() * 31) + this.b.hashCode()) * 31;
|
|
f5 f5Var = this.c;
|
|
return ((((hashCode + (f5Var == null ? 0 : f5Var.hashCode())) * 31) + Integer.hashCode(this.d)) * 31) + this.e.hashCode();
|
|
}
|
|
|
|
public final int i() {
|
|
return this.d;
|
|
}
|
|
|
|
public final f5 j() {
|
|
return this.c;
|
|
}
|
|
|
|
public String toString() {
|
|
return "AuctionResponseData(auctionId=" + this.a + ", auctionResponseGenericParam=" + this.b + ", genericNotifications=" + this.c + ", auctionTrial=" + this.d + ", auctionFallback=" + this.e + ')';
|
|
}
|
|
}
|