Files
rr3-apk/decompiled/sources/csdk/gluads/PlacementEvent.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

41 lines
1.5 KiB
Java

package csdk.gluads;
import csdk.gluads.util.ISerializableJsonObject;
import csdk.gluads.util.JsonUtil;
import java.util.Map;
import org.json.JSONException;
import org.json.JSONStringer;
/* loaded from: classes4.dex */
public class PlacementEvent implements ISerializableJsonObject {
public final String advertisementType;
public final Throwable error;
public final Map<String, Object> extra;
public final String placement;
public final String status;
public final long textureInfo;
public PlacementEvent(String str, String str2, String str3, Throwable th, Map<String, Object> map, long j) {
this.advertisementType = str;
this.placement = str2;
this.status = str3;
this.error = th;
this.extra = map;
this.textureInfo = j;
}
public PlacementEvent(String str, String str2, String str3, Throwable th, Map<String, Object> map) {
this(str, str2, str3, th, map, 0L);
}
@Override // csdk.gluads.util.ISerializableJsonObject
public void write(JSONStringer jSONStringer) throws JSONException {
JsonUtil.optKeyValue(jSONStringer, "advertisementType", this.advertisementType);
JsonUtil.optKeyValue(jSONStringer, "placement", this.placement);
JsonUtil.optKeyValue(jSONStringer, "status", this.status);
JsonUtil.optKeyValue(jSONStringer, "error", this.error);
JsonUtil.optKeyValue(jSONStringer, "extra", this.extra);
JsonUtil.optKeyValue(jSONStringer, "textureInfo", Long.valueOf(this.textureInfo));
}
}