. */ namespace SP\Domain\Account\Models; use SP\Domain\Common\Models\Model; /** * Class AccountSearchView */ final class AccountSearchView extends Model { protected ?int $id = null; protected ?int $clientId = null; protected ?int $categoryId = null; protected ?string $name = null; protected ?string $login = null; protected ?string $url = null; protected ?string $notes = null; protected ?int $userId = null; protected ?int $userGroupId = null; protected ?int $otherUserEdit = null; protected ?int $otherUserGroupEdit = null; protected ?int $isPrivate = null; protected ?int $isPrivateGroup = null; protected ?int $passDate = null; protected ?int $passDateChange = null; protected ?int $parentId = null; protected ?int $countView = null; protected ?int $dateEdit = null; protected ?string $userName = null; protected ?string $userLogin = null; protected ?string $userGroupName = null; protected ?string $categoryName = null; protected ?string $clientName = null; protected ?int $num_files = null; protected ?string $publicLinkHash = null; protected ?string $publicLinkDateExpire = null; protected ?string $publicLinkTotalCountViews = null; public function getClientId(): ?int { return $this->clientId; } public function getCategoryId(): ?int { return $this->categoryId; } public function getLogin(): ?string { return $this->login; } public function getUrl(): ?string { return $this->url; } public function getNotes(): ?string { return $this->notes; } public function getUserId(): ?int { return $this->userId; } public function getUserGroupId(): ?int { return $this->userGroupId; } public function getOtherUserEdit(): ?int { return $this->otherUserEdit; } public function getOtherUserGroupEdit(): ?int { return $this->otherUserGroupEdit; } public function getIsPrivate(): ?int { return $this->isPrivate; } public function getIsPrivateGroup(): ?int { return $this->isPrivateGroup; } public function getPassDate(): ?int { return $this->passDate; } public function getPassDateChange(): ?int { return $this->passDateChange; } public function getParentId(): ?int { return $this->parentId; } public function getCountView(): ?int { return $this->countView; } public function getDateEdit(): ?int { return $this->dateEdit; } public function getUserLogin(): ?string { return $this->userLogin; } public function getNumFiles(): ?int { return $this->num_files; } public function getPublicLinkHash(): ?string { return $this->publicLinkHash; } public function getPublicLinkDateExpire(): ?string { return $this->publicLinkDateExpire; } public function getPublicLinkTotalCountViews(): ?string { return $this->publicLinkTotalCountViews; } public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function getClientName(): ?string { return $this->clientName; } public function getCategoryName(): ?string { return $this->categoryName; } public function getUserName(): ?string { return $this->userName; } public function getUserGroupName(): ?string { return $this->userGroupName; } }