setConferenceId($conferenceId) ->setParticipant($participant); } /** * set the conference id * * @param string $conferenceId * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_NewParticipantRequest */ public function setConferenceId($conferenceId) { $this->conferenceId = $conferenceId; return $this; } /** * sets new participant * * @param Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_NewParticipantRequest */ public function setParticipant(Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant) { $this->participant = $participant; return $this; } }