This commit is contained in:
Björn Fromme
2023-09-02 18:47:42 +02:00
parent 23e66b08e8
commit 08f7836d41
21 changed files with 693 additions and 82 deletions
@@ -5,6 +5,8 @@ namespace App\BusProNet\Model;
class CrmAttributesResponse extends BaseResponse
{
private ?array $attributeGroups = null;
private bool $admin = false;
private bool $manager = false;
private bool $teamer = false;
public function getAttributeGroups(): ?array
@@ -29,4 +31,28 @@ class CrmAttributesResponse extends BaseResponse
return $this;
}
public function isAdmin(): bool
{
return $this->admin;
}
public function setAdmin(bool $admin): static
{
$this->admin = $admin;
return $this;
}
public function isManager(): bool
{
return $this->manager;
}
public function setManager(bool $manager): static
{
$this->manager = $manager;
return $this;
}
}