summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmtpDomain.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmtpDomain.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmtpDomain.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmtpDomain.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmtpDomain.php
new file mode 100644
index 00000000..d9c85157
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmtpDomain.php
@@ -0,0 +1,39 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\SmtpDomain.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents a single SMTP domain.
+ *
+ * @package php-ews\Type
+ */
+class SmtpDomain extends Type
+{
+ /**
+ * Identifies the name of a domain.
+ *
+ * This attribute is required.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ public $Name;
+
+ /**
+ * Indicates whether subdomains of the domain identified by the Name
+ * attribute are considered internal.
+ *
+ * This attribute is optional.
+ *
+ * @since Exchange 2010
+ *
+ * @var boolean
+ */
+ public $IncludeSubdomains;
+}