detail; } /** * returns the starttime * * @return integer */ public function getStartTime() { return $this->startTime; } /** * returns the schedule object * * @return Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule */ public function getSchedule() { return $this->schedule; } /** * returns array with all participants * Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail * * @return array of Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail */ public function getParticipants() { if ($this->participants instanceof Zend_Service_DeveloperGarden_ConferenceCall_Participant) { $this->participants = array( $this->participants ); } return $this->participants; } /** * returns the participant object if found in the response * * @param string $participantId * @return Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail */ public function getParticipantById($participantId) { $participants = $this->getParticipants(); if ($participants !== null) { foreach ($participants as $participant) { if (strcmp($participant->getParticipantId(), $participantId) == 0) { return $participant; } } } return null; } /** * returns the conference account details * * @return Zend_Service_DeveloperGarden_ConferenceCall_ConferenceAccount */ public function getAccount() { return $this->acc; } }