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