You have to add Serialized name to your models so that it works when generating the apk or bundle.
public class ErrorResponse {
@SerializedName("Error")
private String Error;
public String getError() {
return Error;
}
public void setError(String error) {
Error = error;
}
}