<?php
namespace App\V4\Model;
class SimpleChoiceOption
{
/**
* @var string
*/
private $id;
/**
* @return string
*/
public function getId(): string
{
return $this->id;
}
/**
* @param string $id
*
* @return self
*/
public function setId(string $id): self
{
$this->id = $id;
return $this;
}
}