- 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
34 lines
918 B
Java
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;
|
|
}
|
|
}
|