Files
rr3-apk/decompiled-community/sources/com/helpshift/network/HSResponse.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

34 lines
918 B
Java

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;
}
}