ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ApplePushNotificationCertificate 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; /** * ApplePushNotificationCertificate 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 ApplePushNotificationCertificate extends Entity { /** * Gets the appleIdentifier * Apple Id of the account used to create the MDM push certificate. * * @return string|null The appleIdentifier */ public function getAppleIdentifier() { if (array_key_exists("appleIdentifier", $this->_propDict)) { return $this->_propDict["appleIdentifier"]; } else { return null; } } /** * Sets the appleIdentifier * Apple Id of the account used to create the MDM push certificate. * * @param string $val The appleIdentifier * * @return ApplePushNotificationCertificate */ public function setAppleIdentifier($val) { $this->_propDict["appleIdentifier"] = $val; return $this; } /** * Gets the certificate * Not yet documented * * @return string|null The certificate */ public function getCertificate() { if (array_key_exists("certificate", $this->_propDict)) { return $this->_propDict["certificate"]; } else { return null; } } /** * Sets the certificate * Not yet documented * * @param string $val The certificate * * @return ApplePushNotificationCertificate */ public function setCertificate($val) { $this->_propDict["certificate"] = $val; return $this; } /** * Gets the certificateSerialNumber * Certificate serial number. This property is read-only. * * @return string|null The certificateSerialNumber */ public function getCertificateSerialNumber() { if (array_key_exists("certificateSerialNumber", $this->_propDict)) { return $this->_propDict["certificateSerialNumber"]; } else { return null; } } /** * Sets the certificateSerialNumber * Certificate serial number. This property is read-only. * * @param string $val The certificateSerialNumber * * @return ApplePushNotificationCertificate */ public function setCertificateSerialNumber($val) { $this->_propDict["certificateSerialNumber"] = $val; return $this; } /** * Gets the certificateUploadFailureReason * The reason the certificate upload failed. * * @return string|null The certificateUploadFailureReason */ public function getCertificateUploadFailureReason() { if (array_key_exists("certificateUploadFailureReason", $this->_propDict)) { return $this->_propDict["certificateUploadFailureReason"]; } else { return null; } } /** * Sets the certificateUploadFailureReason * The reason the certificate upload failed. * * @param string $val The certificateUploadFailureReason * * @return ApplePushNotificationCertificate */ public function setCertificateUploadFailureReason($val) { $this->_propDict["certificateUploadFailureReason"] = $val; return $this; } /** * Gets the certificateUploadStatus * The certificate upload status. * * @return string|null The certificateUploadStatus */ public function getCertificateUploadStatus() { if (array_key_exists("certificateUploadStatus", $this->_propDict)) { return $this->_propDict["certificateUploadStatus"]; } else { return null; } } /** * Sets the certificateUploadStatus * The certificate upload status. * * @param string $val The certificateUploadStatus * * @return ApplePushNotificationCertificate */ public function setCertificateUploadStatus($val) { $this->_propDict["certificateUploadStatus"] = $val; return $this; } /** * Gets the expirationDateTime * The expiration date and time for Apple push notification certificate. * * @return \DateTime|null The expirationDateTime */ public function getExpirationDateTime() { if (array_key_exists("expirationDateTime", $this->_propDict)) { if (is_a($this->_propDict["expirationDateTime"], "\DateTime") || is_null($this->_propDict["expirationDateTime"])) { return $this->_propDict["expirationDateTime"]; } else { $this->_propDict["expirationDateTime"] = new \DateTime($this->_propDict["expirationDateTime"]); return $this->_propDict["expirationDateTime"]; } } return null; } /** * Sets the expirationDateTime * The expiration date and time for Apple push notification certificate. * * @param \DateTime $val The expirationDateTime * * @return ApplePushNotificationCertificate */ public function setExpirationDateTime($val) { $this->_propDict["expirationDateTime"] = $val; return $this; } /** * Gets the lastModifiedDateTime * Last modified date and time for Apple push notification certificate. * * @return \DateTime|null The lastModifiedDateTime */ public function getLastModifiedDateTime() { if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; } /** * Sets the lastModifiedDateTime * Last modified date and time for Apple push notification certificate. * * @param \DateTime $val The lastModifiedDateTime * * @return ApplePushNotificationCertificate */ public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; } /** * Gets the topicIdentifier * Topic Id. * * @return string|null The topicIdentifier */ public function getTopicIdentifier() { if (array_key_exists("topicIdentifier", $this->_propDict)) { return $this->_propDict["topicIdentifier"]; } else { return null; } } /** * Sets the topicIdentifier * Topic Id. * * @param string $val The topicIdentifier * * @return ApplePushNotificationCertificate */ public function setTopicIdentifier($val) { $this->_propDict["topicIdentifier"] = $val; return $this; } }
cải xoăn