summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenRequestType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenRequestType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenRequestType.php45
1 files changed, 45 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenRequestType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenRequestType.php
new file mode 100644
index 00000000..f77999f0
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ClientAccessTokenRequestType.php
@@ -0,0 +1,45 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\ClientAccessTokenRequestType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use jamesiarmes\PhpEws\Type;
+
+/**
+ * Defines a single token request.
+ *
+ * @package php-ews\Type
+ */
+class ClientAccessTokenRequestType extends Type
+{
+ /**
+ * Specifies the identifier of an app.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $Id;
+
+ /**
+ * Specifies a token scope.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $Scope;
+
+ /**
+ * Identifies the type of client access token.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\ClientAccessTokenTypeType
+ */
+ public $TokenType;
+}