public void MergeFrom(PredictionTrajectoryPoint other)
 {
     if (other == null)
     {
         return;
     }
     if (other.pathPoint_ != null)
     {
         if (pathPoint_ == null)
         {
             pathPoint_ = new global::Apollo.Prediction.PredictionPathPoint();
         }
         PathPoint.MergeFrom(other.PathPoint);
     }
     if (other.Timestamp != 0D)
     {
         Timestamp = other.Timestamp;
     }
 }