FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: TermsExpiration.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * TermsExpiration 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; /** * TermsExpiration 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 TermsExpiration extends Entity { /** * Gets the frequency * Represents the frequency at which the terms will expire, after its first expiration as set in startDateTime. The value is represented in ISO 8601 format for durations. For example, PT1M represents a time period of 1 month. * * @return \DateInterval|null The frequency */ public function getFrequency() { if (array_key_exists("frequency", $this->_propDict)) { if (is_a($this->_propDict["frequency"], "\DateInterval") || is_null($this->_propDict["frequency"])) { return $this->_propDict["frequency"]; } else { $this->_propDict["frequency"] = new \DateInterval($this->_propDict["frequency"]); return $this->_propDict["frequency"]; } } return null; } /** * Sets the frequency * Represents the frequency at which the terms will expire, after its first expiration as set in startDateTime. The value is represented in ISO 8601 format for durations. For example, PT1M represents a time period of 1 month. * * @param \DateInterval $val The value to assign to the frequency * * @return TermsExpiration The TermsExpiration */ public function setFrequency($val) { $this->_propDict["frequency"] = $val; return $this; } /** * Gets the startDateTime * The DateTime when the agreement is set to expire for all users. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @return \DateTime|null The startDateTime */ public function getStartDateTime() { if (array_key_exists("startDateTime", $this->_propDict)) { if (is_a($this->_propDict["startDateTime"], "\DateTime") || is_null($this->_propDict["startDateTime"])) { return $this->_propDict["startDateTime"]; } else { $this->_propDict["startDateTime"] = new \DateTime($this->_propDict["startDateTime"]); return $this->_propDict["startDateTime"]; } } return null; } /** * Sets the startDateTime * The DateTime when the agreement is set to expire for all users. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @param \DateTime $val The value to assign to the startDateTime * * @return TermsExpiration The TermsExpiration */ public function setStartDateTime($val) { $this->_propDict["startDateTime"] = $val; return $this; } }
Save
Back