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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package com.helpshift.network;
import java.util.Map;
/* loaded from: classes3.dex */
public class HSResponse {
public final Map headers;
public final String responseString;
public final int status;
public interface NetworkResponseCodes {
public static final Integer OK = 200;
public static final Integer CONTENT_UNCHANGED = 304;
public static final Integer OBJECT_NOT_FOUND = 400;
public static final Integer UNAUTHORIZED_ACCESS = 401;
public static final Integer AUTH_TOKEN_NOT_PROVIDED = 441;
public static final Integer INVALID_AUTH_TOKEN = 443;
}
public String getResponseString() {
return this.responseString;
}
public int getStatus() {
return this.status;
}
public HSResponse(int i, String str, Map map) {
this.status = i;
this.responseString = str;
this.headers = map;
}
}