ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
ExternalConnectors
/
Model
/
ExternalGroup.php
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
ExternalConnectors
/
Model
Last commit date
AccessType.php
1 year ago
Acl.php
1 year ago
AclType.php
1 year ago
Configuration.php
1 year ago
ConnectionOperation.php
1 year ago
ConnectionOperationStatus.php
1 year ago
ConnectionState.php
1 year ago
External.php
1 year ago
ExternalConnection.php
1 year ago
ExternalGroup.php
1 year ago
ExternalItem.php
1 year ago
ExternalItemContent.php
1 year ago
ExternalItemContentType.php
1 year ago
Identity.php
1 year ago
IdentityType.php
1 year ago
Label.php
1 year ago
Properties.php
1 year ago
Property.php
1 year ago
PropertyType.php
1 year ago
Schema.php
1 year ago
ExternalGroup.php
116 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 | * ExternalGroup 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\ExternalConnectors\Model; |
| 15 | |
| 16 | /** |
| 17 | * ExternalGroup class |
| 18 | * |
| 19 | * @category Model |
| 20 | * @package Microsoft.Graph |
| 21 | * @copyright (c) Microsoft Corporation. All rights reserved. |
| 22 | * @license https://opensource.org/licenses/MIT MIT License |
| 23 | * @link https://graph.microsoft.com |
| 24 | */ |
| 25 | class ExternalGroup extends \Microsoft\Graph\Model\Entity |
| 26 | { |
| 27 | /** |
| 28 | * Gets the description |
| 29 | * The description of the external group. Optional. |
| 30 | * |
| 31 | * @return string|null The description |
| 32 | */ |
| 33 | public function getDescription() |
| 34 | { |
| 35 | if (array_key_exists("description", $this->_propDict)) { |
| 36 | return $this->_propDict["description"]; |
| 37 | } else { |
| 38 | return null; |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Sets the description |
| 44 | * The description of the external group. Optional. |
| 45 | * |
| 46 | * @param string $val The description |
| 47 | * |
| 48 | * @return ExternalGroup |
| 49 | */ |
| 50 | public function setDescription($val) |
| 51 | { |
| 52 | $this->_propDict["description"] = $val; |
| 53 | return $this; |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Gets the displayName |
| 58 | * The friendly name of the external group. Optional. |
| 59 | * |
| 60 | * @return string|null The displayName |
| 61 | */ |
| 62 | public function getDisplayName() |
| 63 | { |
| 64 | if (array_key_exists("displayName", $this->_propDict)) { |
| 65 | return $this->_propDict["displayName"]; |
| 66 | } else { |
| 67 | return null; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Sets the displayName |
| 73 | * The friendly name of the external group. Optional. |
| 74 | * |
| 75 | * @param string $val The displayName |
| 76 | * |
| 77 | * @return ExternalGroup |
| 78 | */ |
| 79 | public function setDisplayName($val) |
| 80 | { |
| 81 | $this->_propDict["displayName"] = $val; |
| 82 | return $this; |
| 83 | } |
| 84 | |
| 85 | |
| 86 | /** |
| 87 | * Gets the members |
| 88 | * A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or an externalGroup as members. |
| 89 | * |
| 90 | * @return array|null The members |
| 91 | */ |
| 92 | public function getMembers() |
| 93 | { |
| 94 | if (array_key_exists("members", $this->_propDict)) { |
| 95 | return $this->_propDict["members"]; |
| 96 | } else { |
| 97 | return null; |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Sets the members |
| 103 | * A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or an externalGroup as members. |
| 104 | * |
| 105 | * @param Identity[] $val The members |
| 106 | * |
| 107 | * @return ExternalGroup |
| 108 | */ |
| 109 | public function setMembers($val) |
| 110 | { |
| 111 | $this->_propDict["members"] = $val; |
| 112 | return $this; |
| 113 | } |
| 114 | |
| 115 | } |
| 116 |