aboutsummaryrefslogtreecommitdiff
path: root/src/callnotifier/EDSS1/Message.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2012-07-20 07:45:53 +0200
committerChristian Weiske <cweiske@cweiske.de>2012-07-20 07:45:53 +0200
commit2039373b7d60786e5b92a79520cecfcfce34c044 (patch)
treed30dac6fa8c58cd5990c6abfa4fc533f890bfaf3 /src/callnotifier/EDSS1/Message.php
parent0073743d7518e5899f0cd075a1c7755a9d603bbd (diff)
downloadauerswald-callnotifier-2039373b7d60786e5b92a79520cecfcfce34c044.tar.gz
auerswald-callnotifier-2039373b7d60786e5b92a79520cecfcfce34c044.zip
read TEI and call reference
Diffstat (limited to 'src/callnotifier/EDSS1/Message.php')
-rw-r--r--src/callnotifier/EDSS1/Message.php23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/callnotifier/EDSS1/Message.php b/src/callnotifier/EDSS1/Message.php
index 3d22a82..08fa44f 100644
--- a/src/callnotifier/EDSS1/Message.php
+++ b/src/callnotifier/EDSS1/Message.php
@@ -12,11 +12,32 @@ class EDSS1_Message
const RELEASE = "\x4D";
const RELEASE_COMPLETE = "\x5A";
const INFORMATION = "\x7B";
-
+
/**
+ * Message type, see the class constants
* @var integer
*/
public $type;
+
+ /**
+ * Call reference number to distinguish concurrent calls
+ *
+ * @var integer
+ */
+ public $callRef;
+
+ /**
+ * Terminal Endpoint Identifier (internal Telephone ID)
+ *
+ * @var integer
+ */
+ public $tei;
+
+ /**
+ * Array of EDSS1_Parameter objects
+ *
+ * @var array
+ */
public $parameters = array();