WIP
This commit is contained in:
@@ -4,6 +4,10 @@ namespace App\BusProNet\Model;
|
||||
|
||||
class CrmAttribute
|
||||
{
|
||||
public const ATTR_ID_ADMIN = 1071;
|
||||
public const ATTR_ID_MANAGER = 1072;
|
||||
public const ATTR_ID_TEAMER = 1070;
|
||||
|
||||
private ?int $id = null;
|
||||
private ?string $label = null;
|
||||
private bool $selected = false;
|
||||
|
||||
@@ -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