File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/microsoft/microsoft-graph/src/Model/SchemaExtension.php
Back
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * SchemaExtension File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version GIT: 1.4.0 * @link https://graph.microsoft.io/ */ namespace Microsoft\Graph\Model; /** * SchemaExtension class * * @category Model * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version Release: 1.4.0 * @link https://graph.microsoft.io/ */ class SchemaExtension extends Entity { /** * Gets the description * Description for the schema extension. * * @return string The description */ public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * Description for the schema extension. * * @param string $val The description * * @return SchemaExtension */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the targetTypes * Set of Microsoft Graph types (that can support extensions) that the schema extension can be applied to. Select from contact, device, event, group, message, organization, post, or user. * * @return string The targetTypes */ public function getTargetTypes() { if (array_key_exists("targetTypes", $this->_propDict)) { return $this->_propDict["targetTypes"]; } else { return null; } } /** * Sets the targetTypes * Set of Microsoft Graph types (that can support extensions) that the schema extension can be applied to. Select from contact, device, event, group, message, organization, post, or user. * * @param string $val The targetTypes * * @return SchemaExtension */ public function setTargetTypes($val) { $this->_propDict["targetTypes"] = $val; return $this; } /** * Gets the schemaExtensionProperties * The collection of property names and types that make up the schema extension definition. * * @return array The schemaExtensionProperties */ public function getSchemaExtensionProperties() { if (array_key_exists("properties", $this->_propDict)) { return $this->_propDict["properties"]; } else { return null; } } /** * Sets the schemaExtensionProperties * The collection of property names and types that make up the schema extension definition. * * @param ExtensionSchemaProperty $val The schemaExtensionProperties * * @return SchemaExtension */ public function setSchemaExtensionProperties($val) { $this->_propDict["properties"] = $val; return $this; } /** * Gets the status * The lifecycle state of the schema extension. Possible states are InDevelopment, Available, and Deprecated. Automatically set to InDevelopment on creation. Schema extensions provides more information on the possible state transitions and behaviors. * * @return string The status */ public function getStatus() { if (array_key_exists("status", $this->_propDict)) { return $this->_propDict["status"]; } else { return null; } } /** * Sets the status * The lifecycle state of the schema extension. Possible states are InDevelopment, Available, and Deprecated. Automatically set to InDevelopment on creation. Schema extensions provides more information on the possible state transitions and behaviors. * * @param string $val The status * * @return SchemaExtension */ public function setStatus($val) { $this->_propDict["status"] = $val; return $this; } /** * Gets the owner * The appId of the application that is the owner of the schema extension. This property can be supplied on creation, to set the owner. If not supplied, then the calling application's appId will be set as the owner. In either case, the signed-in user must be the owner of the application. Once set, this property is read-only and cannot be changed. * * @return string The owner */ public function getOwner() { if (array_key_exists("owner", $this->_propDict)) { return $this->_propDict["owner"]; } else { return null; } } /** * Sets the owner * The appId of the application that is the owner of the schema extension. This property can be supplied on creation, to set the owner. If not supplied, then the calling application's appId will be set as the owner. In either case, the signed-in user must be the owner of the application. Once set, this property is read-only and cannot be changed. * * @param string $val The owner * * @return SchemaExtension */ public function setOwner($val) { $this->_propDict["owner"] = $val; return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings