Beispiel #1
0
 /**
  * Get all people that registered for
  * this webinar.
  * 
  * @return \ArrayObject
  */
 public function getRegistrants()
 {
     $goToWebinar = new GoToWebinar($this->getClient());
     $registrants = $goToWebinar->getRegistrants($this->getId());
     return $registrants;
 }
 public function getRegistrants($webinar_id)
 {
     $goToWebinar = new GoToWebinar($this->client);
     $registrants = $goToWebinar->getRegistrants($webinar_id);
     return $registrants;
 }