Files
rr3-apk/decompiled/sources/com/ironsource/co.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

79 lines
1.5 KiB
Java

package com.ironsource;
/* loaded from: classes2.dex */
public class co {
private boolean a;
private boolean b;
private boolean c;
private go d;
private int e;
private int f;
public static class b {
private boolean a = true;
private boolean b = false;
private boolean c = false;
private go d = null;
private int e = 0;
private int f = 0;
public b a(boolean z) {
this.a = z;
return this;
}
public b a(boolean z, int i) {
this.c = z;
this.f = i;
return this;
}
public b a(boolean z, go goVar, int i) {
this.b = z;
if (goVar == null) {
goVar = go.PER_DAY;
}
this.d = goVar;
this.e = i;
return this;
}
public co a() {
return new co(this.a, this.b, this.c, this.d, this.e, this.f);
}
}
private co(boolean z, boolean z2, boolean z3, go goVar, int i, int i2) {
this.a = z;
this.b = z2;
this.c = z3;
this.d = goVar;
this.e = i;
this.f = i2;
}
public go a() {
return this.d;
}
public int b() {
return this.e;
}
public int c() {
return this.f;
}
public boolean d() {
return this.b;
}
public boolean e() {
return this.a;
}
public boolean f() {
return this.c;
}
}