Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetParticipantStatusRequest.php
Go to the documentation of this file.
00001 <?php
00026 require_once 'Zend/Service/DeveloperGarden/Request/RequestAbstract.php';
00027 
00036 class Zend_Service_DeveloperGarden_Request_ConferenceCall_GetParticipantStatusRequest
00037     extends Zend_Service_DeveloperGarden_Request_RequestAbstract
00038 {
00044     public $conferenceId = null;
00045 
00051     public $participantId = null;
00052 
00060     public function __construct($environment, $conferenceId, $participantId)
00061     {
00062         parent::__construct($environment);
00063         $this->setConferenceId($conferenceId)
00064              ->setParticipantId($participantId);
00065     }
00066 
00073     public function setConferenceId($conferenceId)
00074     {
00075         $this->conferenceId = $conferenceId;
00076         return $this;
00077     }
00078 
00085     public function setParticipantId($participantId)
00086     {
00087         $this->participantId = $participantId;
00088         return $this;
00089     }
00090 }
 All Data Structures Namespaces Files Functions Variables Enumerations