summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenType.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenType.php
new file mode 100644
index 00000000..0de0cf58
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenType.php
@@ -0,0 +1,54 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\ClientAccessTokenType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use jamesiarmes\PhpEws\Type;
+
+/**
+ * Defines a client access token.
+ *
+ * @package php-ews\Type
+ */
+class ClientAccessTokenType extends Type
+{
+ /**
+ * Specifies the identifier of the token.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $Id;
+
+ /**
+ * Specifies the type of token.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\ClientAccessTokenTypeType
+ */
+ public $TokenType;
+
+ /**
+ * Specifies the encoded client access token.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $TokenValue;
+
+ /**
+ * Specifies the time, in minutes, that the token is valid.
+ *
+ * @since Exchange 2013
+ *
+ * @var integer
+ */
+ public $TTL;
+}