/**
  * Declares an association between this object and a LeasingEventLeads object.
  *
  * @param                  LeasingEventLeads $v
  * @return LeasingEventBookings The current object (for fluent API support)
  * @throws PropelException
  */
 public function setLeasingEventLeads(LeasingEventLeads $v = null)
 {
     if ($v === null) {
         $this->setEventLeadsId(NULL);
     } else {
         $this->setEventLeadsId($v->getId());
     }
     $this->aLeasingEventLeads = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the LeasingEventLeads object, it will not be re-added.
     if ($v !== null) {
         $v->addLeasingEventBookings($this);
     }
     return $this;
 }