id; } public function getPath(): string { return $this->path; } public function setPath(string $path): static { $this->path = $path; return $this; } public function getDisplayName(): string { return $this->displayName; } public function setDisplayName(string $displayName): static { $this->displayName = $displayName; return $this; } public function getParentPath(): ?string { return $this->parentPath; } public function setParentPath(?string $parentPath): static { $this->parentPath = $parentPath; return $this; } public function getUnreadCount(): int { return $this->unreadCount; } public function setUnreadCount(int $unreadCount): static { $this->unreadCount = $unreadCount; return $this; } public function getTotalCount(): int { return $this->totalCount; } public function setTotalCount(int $totalCount): static { $this->totalCount = $totalCount; return $this; } public function getLastSyncedAt(): ?DateTimeImmutable { return $this->lastSyncedAt; } public function setLastSyncedAt(?DateTimeImmutable $lastSyncedAt): static { $this->lastSyncedAt = $lastSyncedAt; return $this; } }