|
@@ -30,6 +30,9 @@ class OrganizationProfile implements ApiResourcesInterface
|
|
|
#[Groups('access_profile_read')]
|
|
#[Groups('access_profile_read')]
|
|
|
private ?string $product = null;
|
|
private ?string $product = null;
|
|
|
|
|
|
|
|
|
|
+ #[Groups('access_profile_read')]
|
|
|
|
|
+ private ?string $legalStatus = null;
|
|
|
|
|
+
|
|
|
#[Groups('access_profile_read')]
|
|
#[Groups('access_profile_read')]
|
|
|
private ?string $subDomain = null;
|
|
private ?string $subDomain = null;
|
|
|
|
|
|
|
@@ -90,6 +93,18 @@ class OrganizationProfile implements ApiResourcesInterface
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public function getLegalStatus(): ?string
|
|
|
|
|
+ {
|
|
|
|
|
+ return $this->legalStatus;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public function setLegalStatus(?string $legalStatus): self
|
|
|
|
|
+ {
|
|
|
|
|
+ $this->legalStatus = $legalStatus;
|
|
|
|
|
+
|
|
|
|
|
+ return $this;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public function getNetworks(): array
|
|
public function getNetworks(): array
|
|
|
{
|
|
{
|
|
|
return $this->networks;
|
|
return $this->networks;
|