diff --git a/src/Configuration/Query/OrgLevelQuery.php b/src/Configuration/Query/OrgLevelQuery.php index d6d13e1..44f0d89 100644 --- a/src/Configuration/Query/OrgLevelQuery.php +++ b/src/Configuration/Query/OrgLevelQuery.php @@ -23,6 +23,9 @@ class OrgLevelQuery extends ConfigurationQuery /** @var string */ private $code; + /** @var string */ + private $level; + /** @var string */ private $budgetGroup; @@ -72,6 +75,26 @@ public function setCode(string $code) return $this; } + /** + * @return string + */ + public function getLevel() + { + return $this->level; + } + + /** + * @param string $level + * + * @return OrgLevelQuery + */ + public function setLevel(string $level) + { + $this->level = $level; + + return $this; + } + /** * @return string */