|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Service/DeveloperGarden/Request/RequestAbstract.php'; 00027 00036 class Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateConferenceTemplateParticipantRequest 00037 extends Zend_Service_DeveloperGarden_Request_RequestAbstract 00038 { 00044 public $templateId = null; 00045 00051 public $participantId = null; 00052 00058 public $participant = null; 00059 00068 public function __construct($environment, $templateId, $participantId, 00069 Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant = null 00070 ) { 00071 parent::__construct($environment); 00072 $this->setTemplateId($templateId) 00073 ->setParticipantId($participantId) 00074 ->setParticipant($participant); 00075 } 00076 00083 public function setTemplateId($templateId) 00084 { 00085 $this->templateId = $templateId; 00086 return $this; 00087 } 00088 00095 public function setParticipantId($participantId) 00096 { 00097 $this->participantId = $participantId; 00098 return $this; 00099 } 00100 00107 public function setParticipant( 00108 Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant 00109 ) { 00110 $this->participant = $participant; 00111 return $this; 00112 } 00113 }