????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.15.28.86 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/icad.astacus.se/sharepoint/vendor/vgrem/php-spo/src/Graph/ |
Upload File : |
<?php /** * Generated by phpSPO model generator 2020-05-25T06:42:59+00:00 */ namespace Office365\Graph; use Office365\Runtime\ClientObject; use Office365\Runtime\ResourcePath; /** * "Contains information about a service SKU that a company is subscribed to." */ class SubscribedSku extends ClientObject { /** * Possible values are: `Enabled`, `Warning`, `Suspended`, `Deleted`, `LockedOut`. * @return string */ public function getCapabilityStatus() { if (!$this->isPropertyAvailable("CapabilityStatus")) { return null; } return $this->getProperty("CapabilityStatus"); } /** * Possible values are: `Enabled`, `Warning`, `Suspended`, `Deleted`, `LockedOut`. * @var string */ public function setCapabilityStatus($value) { $this->setProperty("CapabilityStatus", $value, true); } /** * The number of licenses that have been assigned. * @return integer */ public function getConsumedUnits() { if (!$this->isPropertyAvailable("ConsumedUnits")) { return null; } return $this->getProperty("ConsumedUnits"); } /** * The number of licenses that have been assigned. * @var integer */ public function setConsumedUnits($value) { $this->setProperty("ConsumedUnits", $value, true); } /** * The unique identifier (GUID) for the service SKU. * @return string */ public function getSkuId() { if (!$this->isPropertyAvailable("SkuId")) { return null; } return $this->getProperty("SkuId"); } /** * The unique identifier (GUID) for the service SKU. * @var string */ public function setSkuId($value) { $this->setProperty("SkuId", $value, true); } /** * The SKU part number; for example: "AAD_PREMIUM" or "RMSBASIC". To get a list of commercial subscriptions that an organization has acquired, see [List subscribedSkus](../api/subscribedsku-list.md). * @return string */ public function getSkuPartNumber() { if (!$this->isPropertyAvailable("SkuPartNumber")) { return null; } return $this->getProperty("SkuPartNumber"); } /** * The SKU part number; for example: "AAD_PREMIUM" or "RMSBASIC". To get a list of commercial subscriptions that an organization has acquired, see [List subscribedSkus](../api/subscribedsku-list.md). * @var string */ public function setSkuPartNumber($value) { $this->setProperty("SkuPartNumber", $value, true); } /** * For example, "User" or "Company". * @return string */ public function getAppliesTo() { if (!$this->isPropertyAvailable("AppliesTo")) { return null; } return $this->getProperty("AppliesTo"); } /** * For example, "User" or "Company". * @var string */ public function setAppliesTo($value) { $this->setProperty("AppliesTo", $value, true); } /** * Information about the number and status of prepaid licenses. * @return LicenseUnitsDetail */ public function getPrepaidUnits() { if (!$this->isPropertyAvailable("PrepaidUnits")) { return null; } return $this->getProperty("PrepaidUnits"); } /** * Information about the number and status of prepaid licenses. * @var LicenseUnitsDetail */ public function setPrepaidUnits($value) { $this->setProperty("PrepaidUnits", $value, true); } }