- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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;
|
|
}
|
|
}
|