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