We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a87f26 + 22e4bf9 commit 9927490Copy full SHA for 9927490
1 file changed
src/Bot/Model/Entity/Dialog.php
@@ -119,6 +119,15 @@ class Dialog implements ModelInterface
119
*/
120
private $isActive;
121
122
+ /**
123
+ * @var Utm $utm
124
+ *
125
+ * @Type("RetailCrm\Mg\Bot\Model\Entity\Utm")
126
+ * @Accessor(getter="getUtm",setter="setUtm")
127
+ * @SkipWhenEmpty()
128
+ */
129
+ private $utm;
130
+
131
/**
132
* @return string|null
133
@@ -294,4 +303,21 @@ public function setIsActive(bool $isActive)
294
303
{
295
304
$this->isActive = $isActive;
296
305
}
306
307
308
+ * @return Utm|null
309
310
+ public function getUtm(): ?Utm
311
+ {
312
+ return $this->utm;
313
+ }
314
315
316
+ * @param Utm $utm
317
+ * @return void
318
319
+ public function setUtm(Utm $utm): void
320
321
+ $this->utm = $utm;
322
297
323
0 commit comments