- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
109 lines
2.3 KiB
Java
109 lines
2.3 KiB
Java
package com.ironsource;
|
|
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class vg {
|
|
private final String a;
|
|
private final String b;
|
|
private r0 c;
|
|
private boolean d;
|
|
private String e;
|
|
private String f;
|
|
|
|
public vg(String appKey, String userId) {
|
|
Intrinsics.checkNotNullParameter(appKey, "appKey");
|
|
Intrinsics.checkNotNullParameter(userId, "userId");
|
|
this.a = appKey;
|
|
this.b = userId;
|
|
}
|
|
|
|
public static /* synthetic */ vg a(vg vgVar, String str, String str2, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = vgVar.a;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
str2 = vgVar.b;
|
|
}
|
|
return vgVar.a(str, str2);
|
|
}
|
|
|
|
public final vg a(String appKey, String userId) {
|
|
Intrinsics.checkNotNullParameter(appKey, "appKey");
|
|
Intrinsics.checkNotNullParameter(userId, "userId");
|
|
return new vg(appKey, userId);
|
|
}
|
|
|
|
public final <T> T a(dl<vg, T> mapper) {
|
|
Intrinsics.checkNotNullParameter(mapper, "mapper");
|
|
return mapper.a(this);
|
|
}
|
|
|
|
public final String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public final void a(r0 r0Var) {
|
|
this.c = r0Var;
|
|
}
|
|
|
|
public final void a(String str) {
|
|
this.f = str;
|
|
}
|
|
|
|
public final void a(boolean z) {
|
|
this.d = z;
|
|
}
|
|
|
|
public final String b() {
|
|
return this.b;
|
|
}
|
|
|
|
public final void b(String str) {
|
|
this.e = str;
|
|
}
|
|
|
|
public final boolean c() {
|
|
return this.d;
|
|
}
|
|
|
|
public final String d() {
|
|
return this.a;
|
|
}
|
|
|
|
public final r0 e() {
|
|
return this.c;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof vg)) {
|
|
return false;
|
|
}
|
|
vg vgVar = (vg) obj;
|
|
return Intrinsics.areEqual(this.a, vgVar.a) && Intrinsics.areEqual(this.b, vgVar.b);
|
|
}
|
|
|
|
public final String f() {
|
|
return this.f;
|
|
}
|
|
|
|
public final String g() {
|
|
return this.e;
|
|
}
|
|
|
|
public final String h() {
|
|
return this.b;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (this.a.hashCode() * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "InitConfig(appKey=" + this.a + ", userId=" + this.b + ')';
|
|
}
|
|
}
|