CurrentVehicleEstimateBean estimate) {
if (estimate == null)
return null;
CurrentVehicleEstimateV2Bean bean = new CurrentVehicleEstimateV2Bean();
bean.setProbability(estimate.getProbability());
bean.setTripStatus(getTripStatus(estimate.getTripStatus()));
bean.setDebug(estimate.getDebug());
return bean;
}