id; } /** * Set type * * */ public function setType(CameraType $type = null): self { $this->type = $type; return $this; } /** * Get type * * @return CameraType */ public function getType(): ?CameraType { return $this->type; } /** * Set brand * * */ public function setBrand(string $brand): self { $this->brand = $brand; return $this; } /** * Get brand * * @return string */ public function getBrand(): ?string { return $this->brand; } /** * Set mount * * */ public function setMount(string $mount): self { $this->mount = $mount; return $this; } /** * Get mount * * @return string */ public function getMount(): ?string { return $this->mount; } /** * Set model * * */ public function setModel(string $model): self { $this->model = $model; return $this; } /** * Get model * * @return string */ public function getModel(): ?string { return $this->model; } /** * Set isDigital * * */ public function setIsDigital(bool $isDigital): self { $this->isDigital = $isDigital; return $this; } /** * Get isDigital * * @return boolean */ public function getIsDigital(): ?bool { return $this->isDigital; } /** * Set cropFactor * * */ public function setCropFactor(string $cropFactor): self { $this->cropFactor = $cropFactor; return $this; } /** * Get cropFactor */ public function getCropFactor(): string { return $this->cropFactor; } /** * Set isWorking * * */ public function setIsWorking(bool $isWorking): self { $this->isWorking = $isWorking; return $this; } /** * Get isWorking * * @return boolean */ public function getIsWorking(): ?bool { return $this->isWorking; } /** * Set notes * * @param string $notes */ public function setNotes($notes): self { $this->notes = $notes; return $this; } /** * Get notes */ public function getNotes(): string { return $this->notes ?? ''; } /** * Set serial * * @param string $serial */ public function setSerial($serial): self { $this->serial = $serial; return $this; } /** * Get serial */ public function getSerial(): string { return $this->serial ?? ''; } /** * Set formerlyOwned * * @param boolean $formerlyOwned */ public function setFormerlyOwned($formerlyOwned): self { $this->formerlyOwned = $formerlyOwned; return $this; } /** * Get formerlyOwned * * @return boolean */ public function getFormerlyOwned(): ?bool { return $this->formerlyOwned; } /** * Set batteryType * * @param string $batteryType */ public function setBatteryType($batteryType): self { $this->batteryType = $batteryType; return $this; } /** * Get batteryType * * @return string */ public function getBatteryType(): ?string { return $this->batteryType; } /** * Set filmFormat * * @param string $filmFormat */ public function setFilmFormat($filmFormat): self { $this->filmFormat = $filmFormat; return $this; } /** * Get filmFormat */ public function getFilmFormat(): string { return $this->filmFormat; } /** * Set received * * @param boolean $received */ public function setReceived($received): self { $this->received = $received; return $this; } /** * Get received */ public function getReceived(): bool { return $this->received; } }