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