Use {@link StringCreativeTemplateVariableValue} to specify the value for this variable when creating {@link TemplateCreative} from the {@link TemplateCreative}.

Inheritance: extends CreativeTemplateVariable
 public function __construct($choices = NULL, $allowOtherChoice = NULL, $defaultValue = NULL, $label = NULL, $uniqueName = NULL, $description = NULL, $isRequired = NULL, $CreativeTemplateVariableType = NULL)
 {
     parent::__construct();
     $this->choices = $choices;
     $this->allowOtherChoice = $allowOtherChoice;
     $this->defaultValue = $defaultValue;
     $this->label = $label;
     $this->uniqueName = $uniqueName;
     $this->description = $description;
     $this->isRequired = $isRequired;
     $this->CreativeTemplateVariableType = $CreativeTemplateVariableType;
 }
 public function __construct($choices = null, $allowOtherChoice = null, $defaultValue = null)
 {
     parent::__construct();
     $this->choices = $choices;
     $this->allowOtherChoice = $allowOtherChoice;
     $this->defaultValue = $defaultValue;
 }