Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
9927490844 | |||
|
22e4bf9cac |
1 changed files with 26 additions and 0 deletions
|
@ -119,6 +119,15 @@ class Dialog implements ModelInterface
|
|||
*/
|
||||
private $isActive;
|
||||
|
||||
/**
|
||||
* @var Utm $utm
|
||||
*
|
||||
* @Type("RetailCrm\Mg\Bot\Model\Entity\Utm")
|
||||
* @Accessor(getter="getUtm",setter="setUtm")
|
||||
* @SkipWhenEmpty()
|
||||
*/
|
||||
private $utm;
|
||||
|
||||
/**
|
||||
* @return string|null
|
||||
*/
|
||||
|
@ -294,4 +303,21 @@ class Dialog implements ModelInterface
|
|||
{
|
||||
$this->isActive = $isActive;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Utm|null
|
||||
*/
|
||||
public function getUtm(): ?Utm
|
||||
{
|
||||
return $this->utm;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Utm $utm
|
||||
* @return void
|
||||
*/
|
||||
public function setUtm(Utm $utm): void
|
||||
{
|
||||
$this->utm = $utm;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue