AviTrip constructor

AviTrip()

Implementation

AviTrip()
{
  id = 0;
  folio = "";
  customer = null;
  driver = null;
  customerVehicle = null;
  serviceVehicle = null;
  latitude = 0;
  longitude = 0;
  address = "";
  startLatitude = 0;
  startLongitude = 0;
  startAddress = "";
  endLatitude = 0;
  endLongitude = 0;
  endAddress = "";
  distance = 0;
  cost = 0;
  duration = 0;
  requestTimestamp = "";
  assignTimestamp = "";
  startTimestamp = "";
  endTimestamp = "";
  payTimestamp = "";
  payToOwnerTimestamp = "";
  cancelTimestamp = "";
  canceledMotive = 0;
  driverRating = 0;
  driverComments = "";
  customerRating = 0;
  customerComments = "";
  image = "";
  service = 0;
  type = 0;
  form = 0;
  quantity = 0;
  status = 0;
  questions = [];
  vehicleId = 0;
  policy = "";
  vin = "";
  checkVin = false;
  route = null;
}