|
|
@@ -373,24 +373,24 @@ class OrganizationCreationRequest
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function getPresident(): ?OrganizationMemberCreationRequest
|
|
|
+ public function getPresident(): int|OrganizationMemberCreationRequest|null
|
|
|
{
|
|
|
return $this->president;
|
|
|
}
|
|
|
|
|
|
- public function setPresident(?OrganizationMemberCreationRequest $president): self
|
|
|
+ public function setPresident(int|OrganizationMemberCreationRequest|null $president): self
|
|
|
{
|
|
|
$this->president = $president;
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function getDirector(): ?OrganizationMemberCreationRequest
|
|
|
+ public function getDirector(): int|OrganizationMemberCreationRequest|null
|
|
|
{
|
|
|
return $this->director;
|
|
|
}
|
|
|
|
|
|
- public function setDirector(?OrganizationMemberCreationRequest $director): self
|
|
|
+ public function setDirector(int|OrganizationMemberCreationRequest|null $director): self
|
|
|
{
|
|
|
$this->director = $director;
|
|
|
|