id; } /** * Set brand * * @param string $brand * * @return Flash */ public function setBrand($brand) { $this->brand = $brand; return $this; } /** * Get brand * * @return string */ public function getBrand() { return $this->brand; } /** * Set model * * @param string $model * * @return Flash */ public function setModel($model) { $this->model = $model; return $this; } /** * Get model * * @return string */ public function getModel() { return $this->model; } /** * Set isAutoFlash * * @param boolean $isAutoFlash * * @return Flash */ public function setIsAutoFlash($isAutoFlash) { $this->isAutoFlash = $isAutoFlash; return $this; } /** * Get isAutoFlash * * @return boolean */ public function getIsAutoFlash() { return $this->isAutoFlash; } /** * Set isTtl * * @param boolean $isTtl * * @return Flash */ public function setIsTtl($isTtl) { $this->isTtl = $isTtl; return $this; } /** * Get isTtl * * @return boolean */ public function getIsTtl() { return $this->isTtl; } /** * Set ttlType * * @param string $ttlType * * @return Flash */ public function setTtlType($ttlType) { $this->ttlType = $ttlType; return $this; } /** * Get ttlType * * @return string */ public function getTtlType() { return $this->ttlType; } /** * Set isPTtl * * @param boolean $isPTtl * * @return Flash */ public function setIsPTtl($isPTtl) { $this->isPTtl = $isPTtl; return $this; } /** * Get isPTtl * * @return boolean */ public function getIsPTtl() { return $this->isPTtl; } /** * Set pTtlType * * @param string $pTtlType * * @return Flash */ public function setPTtlType($pTtlType) { $this->pTtlType = $pTtlType; return $this; } /** * Get pTtlType * * @return string */ public function getPTtlType() { return $this->pTtlType; } /** * Set guideNumber * * @param string $guideNumber * * @return Flash */ public function setGuideNumber($guideNumber) { $this->guideNumber = $guideNumber; return $this; } /** * Get guideNumber * * @return string */ public function getGuideNumber() { return $this->guideNumber; } /** * Set purchasePrice * * @param string $purchasePrice * * @return Flash */ public function setPurchasePrice($purchasePrice) { $this->purchasePrice = $purchasePrice; return $this; } /** * Get purchasePrice * * @return string */ public function getPurchasePrice() { return $this->purchasePrice; } /** * Set batteries * * @param string $batteries * * @return Flash */ public function setBatteries($batteries) { $this->batteries = $batteries; return $this; } /** * Get batteries * * @return string */ public function getBatteries() { return $this->batteries; } /** * Set notes * * @param string $notes * * @return Flash */ public function setNotes($notes) { $this->notes = $notes; return $this; } /** * Get notes * * @return string */ public function getNotes() { return $this->notes; } /** * Set serial * * @param string $serial * * @return Flash */ public function setSerial($serial) { $this->serial = $serial; return $this; } /** * Get serial * * @return string */ public function getSerial() { return $this->serial; } }