|
@@ -246,6 +246,13 @@ class Event extends AbstractEntity
|
|
|
*/
|
|
*/
|
|
|
protected $parentSubdomain;
|
|
protected $parentSubdomain;
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * hasHelloAssoForm
|
|
|
|
|
+ *
|
|
|
|
|
+ * @var string
|
|
|
|
|
+ */
|
|
|
|
|
+ protected $hasHelloAssoForm;
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* organization
|
|
* organization
|
|
|
*
|
|
*
|
|
@@ -977,6 +984,17 @@ class Event extends AbstractEntity
|
|
|
$this->parentSubdomain = $parentSubdomain;
|
|
$this->parentSubdomain = $parentSubdomain;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public function getHasHelloAssoForm(): string
|
|
|
|
|
+ {
|
|
|
|
|
+ return $this->hasHelloAssoForm;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public function setHasHelloAssoForm(string $hasHelloAssoForm): self
|
|
|
|
|
+ {
|
|
|
|
|
+ $this->hasHelloAssoForm = $hasHelloAssoForm;
|
|
|
|
|
+ return $this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* Returns the organization
|
|
* Returns the organization
|
|
|
*
|
|
*
|