what-the-bank/sources/com/google/firebase/crashlytics/internal/network/HttpResponse.java

36 lines
900 B
Java

package com.google.firebase.crashlytics.internal.network;
import java.io.IOException;
import okhttp3.Headers;
import okhttp3.Response;
/* loaded from: classes2.dex */
public class HttpResponse {
private String body;
private int code;
private Headers headers;
HttpResponse(int i, String str, Headers headers) {
this.code = i;
this.body = str;
this.headers = headers;
}
/* JADX INFO: Access modifiers changed from: package-private */
public static HttpResponse create(Response response) throws IOException {
return new HttpResponse(response.code(), response.body() == null ? null : response.body().string(), response.headers());
}
public String header(String str) {
return this.headers.get(str);
}
public int code() {
return this.code;
}
public String body() {
return this.body;
}
}