Files
rr3-apk/decompiled/sources/com/applovin/impl/fh.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

35 lines
620 B
Java

package com.applovin.impl;
import java.util.Map;
/* loaded from: classes.dex */
public class fh {
private final String a;
private Map b;
public Map a() {
return this.b;
}
public String b() {
return this.a;
}
public String toString() {
return "PendingReward{result='" + this.a + "'params='" + this.b + "'}";
}
public static fh a(String str) {
return a(str, null);
}
private fh(String str, Map map) {
this.a = str;
this.b = map;
}
public static fh a(String str, Map map) {
return new fh(str, map);
}
}