ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * LocalizedLabel 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\TermStore\Model; /** * LocalizedLabel 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 LocalizedLabel extends \Microsoft\Graph\Model\Entity { /** * Gets the isDefault * Indicates whether the label is the default label. * * @return bool|null The isDefault */ public function getIsDefault() { if (array_key_exists("isDefault", $this->_propDict)) { return $this->_propDict["isDefault"]; } else { return null; } } /** * Sets the isDefault * Indicates whether the label is the default label. * * @param bool $val The value of the isDefault * * @return LocalizedLabel */ public function setIsDefault($val) { $this->_propDict["isDefault"] = $val; return $this; } /** * Gets the languageTag * The language tag for the label. * * @return string|null The languageTag */ public function getLanguageTag() { if (array_key_exists("languageTag", $this->_propDict)) { return $this->_propDict["languageTag"]; } else { return null; } } /** * Sets the languageTag * The language tag for the label. * * @param string $val The value of the languageTag * * @return LocalizedLabel */ public function setLanguageTag($val) { $this->_propDict["languageTag"] = $val; return $this; } /** * Gets the name * The name of the label. * * @return string|null The name */ public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The name of the label. * * @param string $val The value of the name * * @return LocalizedLabel */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } }
cải xoăn