|
|
@@ -76,6 +76,9 @@ class OrganizationProfile implements ApiResourcesInterface
|
|
|
#[Groups('access_profile_read')]
|
|
|
private ?int $trialCountDown = null;
|
|
|
|
|
|
+ #[Groups('access_profile_read')]
|
|
|
+ private ?SettingsProductEnum $productBeforeTrial = null;
|
|
|
+
|
|
|
public function getId(): ?int
|
|
|
{
|
|
|
return $this->id;
|
|
|
@@ -271,4 +274,16 @@ class OrganizationProfile implements ApiResourcesInterface
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
+
|
|
|
+ public function getProductBeforeTrial(): ?SettingsProductEnum
|
|
|
+ {
|
|
|
+ return $this->productBeforeTrial;
|
|
|
+ }
|
|
|
+
|
|
|
+ public function setProductBeforeTrial(?SettingsProductEnum $productBeforeTrial): self
|
|
|
+ {
|
|
|
+ $this->productBeforeTrial = $productBeforeTrial;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
}
|