id; } /** * Set type * * @param \CameraBundle\Entity\CameraType $type * * @return Camera */ public function setType(\CameraBundle\Entity\CameraType $type = null) { $this->type = $type; return $this; } /** * Get type * * @return \CameraBundle\Entity\CameraType */ public function getType() { return $this->type; } /** * Set brand * * @param string $brand * * @return Camera */ public function setBrand($brand) { $this->brand = $brand; return $this; } /** * Get brand * * @return string */ public function getBrand() { return $this->brand; } /** * Set mount * * @param string $mount * * @return Camera */ public function setMount($mount) { $this->mount = $mount; return $this; } /** * Get mount * * @return string */ public function getMount() { return $this->mount; } /** * Set model * * @param string $model * * @return Camera */ public function setModel($model) { $this->model = $model; return $this; } /** * Get model * * @return string */ public function getModel() { return $this->model; } /** * Set isDigital * * @param boolean $isDigital * * @return Camera */ public function setIsDigital($isDigital) { $this->isDigital = $isDigital; return $this; } /** * Get isDigital * * @return boolean */ public function getIsDigital() { return $this->isDigital; } /** * Set cropFactor * * @param string $cropFactor * * @return Camera */ public function setCropFactor($cropFactor) { $this->cropFactor = $cropFactor; return $this; } /** * Get cropFactor * * @return string */ public function getCropFactor() { return $this->cropFactor; } /** * Set isWorking * * @param boolean $isWorking * * @return Camera */ public function setIsWorking($isWorking) { $this->isWorking = $isWorking; return $this; } /** * Get isWorking * * @return boolean */ public function getIsWorking() { return $this->isWorking; } /** * Set notes * * @param string $notes * * @return Camera */ 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 Camera */ public function setSerial($serial) { $this->serial = $serial; return $this; } /** * Get serial * * @return string */ public function getSerial() { return $this->serial; } /** * Set formerlyOwned * * @param boolean $formerlyOwned * * @return Camera */ public function setFormerlyOwned($formerlyOwned) { $this->formerlyOwned = $formerlyOwned; return $this; } /** * Get formerlyOwned * * @return boolean */ public function getFormerlyOwned() { return $this->formerlyOwned; } /** * Set batteryType * * @param string $batteryType * * @return Camera */ public function setBatteryType($batteryType) { $this->batteryType = $batteryType; return $this; } /** * Get batteryType * * @return string */ public function getBatteryType() { return $this->batteryType; } /** * Set filmFormat * * @param string $filmFormat * * @return Camera */ public function setFilmFormat($filmFormat) { $this->filmFormat = $filmFormat; return $this; } /** * Get filmFormat * * @return string */ public function getFilmFormat() { return $this->filmFormat; } /** * Set received * * @param boolean $received * * @return Camera */ public function setReceived($received) { $this->received = $received; return $this; } /** * Get received * * @return boolean */ public function getReceived() { return $this->received; } }