WIP
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace App\BusProNet\Model;
|
||||
|
||||
class CrmAttributesResponse extends BaseResponse
|
||||
{
|
||||
private ?array $attributeGroups = null;
|
||||
private bool $teamer = false;
|
||||
|
||||
public function getAttributeGroups(): ?array
|
||||
{
|
||||
return $this->attributeGroups;
|
||||
}
|
||||
|
||||
public function setAttributeGroups(?array $attributeGroups): static{
|
||||
$this->attributeGroups = $attributeGroups;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isTeamer(): bool
|
||||
{
|
||||
return $this->teamer;
|
||||
}
|
||||
|
||||
public function setTeamer(bool $teamer): static
|
||||
{
|
||||
$this->teamer = $teamer;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user