Group.php
1 year ago
LocalizedDescription.php
1 year ago
LocalizedLabel.php
1 year ago
LocalizedName.php
1 year ago
Relation.php
1 year ago
RelationType.php
1 year ago
Set.php
1 year ago
Store.php
1 year ago
Term.php
1 year ago
TermGroupScope.php
1 year ago
TermGroupScope.php
37 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. |
| 4 | * |
| 5 | * TermGroupScope File |
| 6 | * PHP version 7 |
| 7 | * |
| 8 | * @category Library |
| 9 | * @package Microsoft.Graph |
| 10 | * @copyright (c) Microsoft Corporation. All rights reserved. |
| 11 | * @license https://opensource.org/licenses/MIT MIT License |
| 12 | * @link https://graph.microsoft.com |
| 13 | */ |
| 14 | namespace Microsoft\Graph\TermStore\Model; |
| 15 | |
| 16 | use Microsoft\Graph\Core\Enum; |
| 17 | |
| 18 | /** |
| 19 | * TermGroupScope class |
| 20 | * |
| 21 | * @category Model |
| 22 | * @package Microsoft.Graph |
| 23 | * @copyright (c) Microsoft Corporation. All rights reserved. |
| 24 | * @license https://opensource.org/licenses/MIT MIT License |
| 25 | * @link https://graph.microsoft.com |
| 26 | */ |
| 27 | class TermGroupScope extends Enum |
| 28 | { |
| 29 | /** |
| 30 | * The Enum TermGroupScope |
| 31 | */ |
| 32 | const GRAPHGLOBAL = "global"; |
| 33 | const SYSTEM = "system"; |
| 34 | const SITE_COLLECTION = "siteCollection"; |
| 35 | const UNKNOWN_FUTURE_VALUE = "unknownFutureValue"; |
| 36 | } |
| 37 |