Source of file VoicemailUserEntryEvent.php
Size: 5,729 Bytes - Last Modified: 2019-04-25T22:07:38+00:00
/data/development/sccp/sources/PAMI/src/PAMI/Message/Event/VoicemailUserEntryEvent.php
| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 | <?php/** * Event triggered when issuing a VoicemailUsersList action. * * PHP Version 5 * * @category Pami * @package Message * @subpackage Action * @author Marcelo Gornstein <marcelog@gmail.com> * @license http://marcelog.github.com/PAMI/ Apache License 2.0 * @version SVN: $Id$ * @link http://marcelog.github.com/PAMI/ * * Copyright 2011 Marcelo Gornstein <marcelog@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */namespace PAMI\Message\Event; /** * Event triggered when issuing a VoicemailUsersList action. * * PHP Version 5 * * @category Pami * @package Message * @subpackage Action * @author Marcelo Gornstein <marcelog@gmail.com> * @license http://marcelog.github.com/PAMI/ Apache License 2.0 * @link http://marcelog.github.com/PAMI/ */class VoicemailUserEntryEvent extends EventMessage {/** * Returns key: 'NewMessageCount'. * * @return string */public function getNewMessageCount() { return $this->getKey('NewMessageCount'); } /** * Returns key: 'MaxMessageLength'. * * @return string */public function getMaxMessageLength() { return $this->getKey('MaxMessageLength'); } /** * Returns key: 'MaxMessageCount'. * * @return string */public function getMaxMessageCount() { return $this->getKey('MaxMessageCount'); } /** * Returns key: 'CallOperator'. * * @return string */public function getCallOperator() { return $this->getKey('CallOperator'); } /** * Returns key: 'CanReview'. * * @return string */public function getCanReview() { return $this->getKey('CanReview'); } /** * Returns key: 'VolumeGain'. * * @return string */public function getVolumeGain() { return $this->getKey('VolumeGain'); } /** * Returns key: 'DeleteMessage'. * * @return string */public function getDeleteMessage() { return $this->getKey('DeleteMessage'); } /** * Returns key: 'AttachmentFormat'. * * @return string */public function getAttachmentFormat() { return $this->getKey('AttachmentFormat'); } /** * Returns key: 'AttachMessage'. * * @return string */public function getAttachMessage() { return $this->getKey('AttachMessage'); } /** * Returns key: 'SayCID'. * * @return string */public function getSayCID() { return $this->getKey('SayCID'); } /** * Returns key: 'SayEnvelope'. * * @return string */public function getSayEnvelope() { return $this->getKey('SayEnvelope'); } /** * Returns key: 'SayDurationMin'. * * @return string */public function getSayDurationMin() { return $this->getKey('SayDurationMin'); } /** * Returns key: 'ExitContext'. * * @return string */public function getExitContext() { return $this->getKey('ExitContext'); } /** * Returns key: 'UniqueID'. * * @return string */public function getUniqueID() { return $this->getKey('UniqueID'); } /** * Returns key: 'DialOut'. * * @return string */public function getDialOut() { return $this->getKey('DialOut'); } /** * Returns key: 'Callback'. * * @return string */public function getCallback() { return $this->getKey('Callback'); } /** * Returns key: 'Timezone'. * * @return string */public function getTimezone() { return $this->getKey('Timezone'); } /** * Returns key: 'Language'. * * @return string */public function getLanguage() { return $this->getKey('Language'); } /** * Returns key: 'MailCommand'. * * @return string */public function getMailCommand() { return $this->getKey('MailCommand'); } /** * Returns key: 'ServerEmail'. * * @return string */public function getServerEmail() { return $this->getKey('ServerEmail'); } /** * Returns key: 'Pager'. * * @return string */public function getPager() { return $this->getKey('Pager'); } /** * Returns key: 'Email'. * * @return string */public function getEmail() { return $this->getKey('Email'); } /** * Returns key: 'Fullname'. * * @return string */public function getFullname() { return $this->getKey('Fullname'); } /** * Returns key: 'VoicemailBox'. * * @return string */public function getVoicemailBox() { return $this->getKey('VoicemailBox'); } /** * Returns key: 'VmContext'. * * @return string */public function getVoicemailContext() { return $this->getKey('VmContext'); } } |