objectType = $objectType; return $this; } public function getObjectType(): ?string { return $this->objectType; } public function setObjectId(int|string|null $objectId): ObjectInformation { $this->objectId = $objectId; return $this; } public function getObjectId(): int|string|null { return $this->objectId; } public function setUserGroupDiff(int $userGroupDiff): ObjectInformation { $this->userGroupDiff = $userGroupDiff; return $this; } public function getUserGroupDiff(): int { return $this->userGroupDiff; } public function setObjectUserGroups($objectUserGroups): ObjectInformation { $this->objectUserGroups = $objectUserGroups; return $this; } /** * @return AbstractUserGroup[] */ public function getObjectUserGroups(): array { return $this->objectUserGroups; } }