setTemplateId($templateId) ->setParticipantId($participantId) ->setParticipant($participant); } /** * set the template id * * @param string $templateId * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateConferenceTemplateParticipantRequest */ public function setTemplateId($templateId) { $this->templateId = $templateId; return $this; } /** * set the participant id * * @param string $participantId * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateConferenceTemplateParticipantRequest */ public function setParticipantId($participantId) { $this->participantId = $participantId; return $this; } /** * sets new participant * * @param Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant * @return Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateConferenceTemplateParticipantRequest */ public function setParticipant( Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant ) { $this->participant = $participant; return $this; } }