/**
  * @param WebexXmlArray<string> $webExID
  */
 public function setWebExID($webExID)
 {
     if ($webExID->getType() != 'string') {
         throw new WebexXmlException(get_class($this) . "::webExID must be of type string");
     }
     $this->webExID = $webExID;
 }
 /**
  * @param WebexXmlArray<string> $items
  */
 public function setItems($items)
 {
     if ($items->getType() != 'string') {
         throw new WebexXmlException(get_class($this) . "::items must be of type string");
     }
     $this->items = $items;
 }
 /**
  * @param WebexXmlArray<string> $startDate
  */
 public function setStartDate($startDate)
 {
     if ($startDate->getType() != 'string') {
         throw new WebexXmlException(get_class($this) . "::startDate must be of type string");
     }
     $this->startDate = $startDate;
 }