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