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

61 lines
1.3 KiB
Java

package com.ironsource;
import java.util.ArrayList;
/* loaded from: classes2.dex */
public interface he {
public static class a {
private final ArrayList<kb> a;
private boolean b;
private int c;
private Exception d;
public a(ArrayList<kb> arrayList) {
this.b = false;
this.c = -1;
this.a = arrayList;
}
public a(ArrayList<kb> arrayList, int i, boolean z, Exception exc) {
this.a = arrayList;
this.b = z;
this.d = exc;
this.c = i;
}
public a a(int i) {
return new a(this.a, i, this.b, this.d);
}
public a a(Exception exc) {
return new a(this.a, this.c, this.b, exc);
}
public a a(boolean z) {
return new a(this.a, this.c, z, this.d);
}
public String a() {
if (this.b) {
return "";
}
return "rc=" + this.c + ", ex=" + this.d;
}
public ArrayList<kb> b() {
return this.a;
}
public boolean c() {
return this.b;
}
public String toString() {
return "EventSendResult{success=" + this.b + ", responseCode=" + this.c + ", exception=" + this.d + '}';
}
}
void a(a aVar);
}