WIP
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user