/**
  * Sets contents of passed object to values from current object.
  *
  * If desired, this method can also make copies of all associated (fkey referrers)
  * objects.
  *
  * @param object $copyObj An object of LeasingEventLeads (or compatible) type.
  * @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
  * @param boolean $makeNew Whether to reset autoincrement PKs and make the object new.
  * @throws PropelException
  */
 public function copyInto($copyObj, $deepCopy = false, $makeNew = true)
 {
     $copyObj->setFname($this->getFname());
     $copyObj->setLname($this->getLname());
     $copyObj->setBirthdate($this->getBirthdate());
     $copyObj->setAge($this->getAge());
     $copyObj->setGender($this->getGender());
     $copyObj->setEmail($this->getEmail());
     $copyObj->setMobile($this->getMobile());
     $copyObj->setCountryId($this->getCountryId());
     $copyObj->setNationalityId($this->getNationalityId());
     $copyObj->setEventLeadType($this->getEventLeadType());
     $copyObj->setClientIp($this->getClientIp());
     $copyObj->setClientId($this->getClientId());
     $copyObj->setCampaign($this->getCampaign());
     $copyObj->setMedium($this->getMedium());
     $copyObj->setSource($this->getSource());
     $copyObj->setGacountry($this->getGacountry());
     if ($deepCopy && !$this->startCopy) {
         // important: temporarily setNew(false) because this affects the behavior of
         // the getter/setter methods for fkey referrer objects.
         $copyObj->setNew(false);
         // store object hash to prevent cycle
         $this->startCopy = true;
         foreach ($this->getLeasingEventBookingss() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addLeasingEventBookings($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getLeasingEventInquiriess() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addLeasingEventInquiries($relObj->copy($deepCopy));
             }
         }
         //unflag object copy
         $this->startCopy = false;
     }
     // if ($deepCopy)
     if ($makeNew) {
         $copyObj->setNew(true);
         $copyObj->setId(NULL);
         // this is a auto-increment column, so set to default value
     }
 }
 /**
  * Sets contents of passed object to values from current object.
  *
  * If desired, this method can also make copies of all associated (fkey referrers)
  * objects.
  *
  * @param object $copyObj An object of LeasingEventPlace (or compatible) type.
  * @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row.
  * @param boolean $makeNew Whether to reset autoincrement PKs and make the object new.
  * @throws PropelException
  */
 public function copyInto($copyObj, $deepCopy = false, $makeNew = true)
 {
     $copyObj->setName($this->getName());
     $copyObj->setPostId($this->getPostId());
     $copyObj->setSlug($this->getSlug());
     $copyObj->setContent($this->getContent());
     $copyObj->setShortAddress($this->getShortAddress());
     $copyObj->setFullAddress($this->getFullAddress());
     $copyObj->setContact($this->getContact());
     $copyObj->setEmail($this->getEmail());
     $copyObj->setMin($this->getMin());
     $copyObj->setMax($this->getMax());
     $copyObj->setReservationFee($this->getReservationFee());
     $copyObj->setSecurityDeposit($this->getSecurityDeposit());
     if ($deepCopy && !$this->startCopy) {
         // important: temporarily setNew(false) because this affects the behavior of
         // the getter/setter methods for fkey referrer objects.
         $copyObj->setNew(false);
         // store object hash to prevent cycle
         $this->startCopy = true;
         foreach ($this->getLeasingEventBookingss() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addLeasingEventBookings($relObj->copy($deepCopy));
             }
         }
         foreach ($this->getLeasingEventInquiriess() as $relObj) {
             if ($relObj !== $this) {
                 // ensure that we don't try to copy a reference to ourselves
                 $copyObj->addLeasingEventInquiries($relObj->copy($deepCopy));
             }
         }
         //unflag object copy
         $this->startCopy = false;
     }
     // if ($deepCopy)
     if ($makeNew) {
         $copyObj->setNew(true);
         $copyObj->setId(NULL);
         // this is a auto-increment column, so set to default value
     }
 }