FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: DateTimeColumn.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DateTimeColumn 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; /** * DateTimeColumn 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 DateTimeColumn extends Entity { /** * Gets the displayAs * How the value should be presented in the UX. Must be one of default, friendly, or standard. See below for more details. If unspecified, treated as default. * * @return string|null The displayAs */ public function getDisplayAs() { if (array_key_exists("displayAs", $this->_propDict)) { return $this->_propDict["displayAs"]; } else { return null; } } /** * Sets the displayAs * How the value should be presented in the UX. Must be one of default, friendly, or standard. See below for more details. If unspecified, treated as default. * * @param string $val The value of the displayAs * * @return DateTimeColumn */ public function setDisplayAs($val) { $this->_propDict["displayAs"] = $val; return $this; } /** * Gets the format * Indicates whether the value should be presented as a date only or a date and time. Must be one of dateOnly or dateTime * * @return string|null The format */ public function getFormat() { if (array_key_exists("format", $this->_propDict)) { return $this->_propDict["format"]; } else { return null; } } /** * Sets the format * Indicates whether the value should be presented as a date only or a date and time. Must be one of dateOnly or dateTime * * @param string $val The value of the format * * @return DateTimeColumn */ public function setFormat($val) { $this->_propDict["format"] = $val; return $this; } }
Save
Back