* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ class Description { /** * @var string */ private $locale; /** * @var string */ private $text; /** * @return string */ public function getLocale() { return $this->locale; } /** * @param string $locale * @return void */ public function setLocale($locale) { $this->locale = $locale; } /** * @return string */ public function getText() { return $this->text; } /** * @param string $text * @return void */ public function setText($text) { $this->text = $text; } }