add organization

This commit is contained in:
Maximilian Ruta 2020-02-01 22:06:43 +01:00
parent f0033034ac
commit 0f2b44b4e1
2 changed files with 24 additions and 1 deletions

View file

@ -6,3 +6,5 @@ Netzbegruenung\Api\Model\RegionalChapter:
type: string
type:
type: string
organization:
type: string

View file

@ -19,6 +19,11 @@ class RegionalChapter
*/
protected $type;
/**
* @var string
*/
protected $organization;
/**
* @return string
*/
@ -66,4 +71,20 @@ class RegionalChapter
{
$this->type = $type;
}
}
/**
* @return string
*/
public function getOrganization(): string
{
return $this->organization;
}
/**
* @param string $organization
*/
public function setOrganization(string $organization): void
{
$this->organization = $organization;
}
}