id; } public function getUserId(): string { return $this->userId; } public function getTitle(): string { return $this->title; } public function getLocation(): string { return $this->location; } public function getCreated(): int { return $this->created; } public function getLastAddedPhoto(): int { return $this->lastAdded; } public function getReceivedFrom(): ?int { return $this->receivedFrom; } public function getFilters(): ?string { return $this->filters; } public function getDecodedFilters(): array { return json_decode($this->filters ?? '{}', true); } }