Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/erp/htdocs/includes/microsoft/microsoft-graph/src/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/erp/htdocs/includes/microsoft/microsoft-graph/src/Model/PersonOrGroupColumn.php
<?php
/**
* Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
* 
* PersonOrGroupColumn 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;
/**
* PersonOrGroupColumn 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 PersonOrGroupColumn extends Entity
{
    /**
    * Gets the allowMultipleSelection
    * Indicates whether multiple values can be selected from the source.
    *
    * @return bool|null The allowMultipleSelection
    */
    public function getAllowMultipleSelection()
    {
        if (array_key_exists("allowMultipleSelection", $this->_propDict)) {
            return $this->_propDict["allowMultipleSelection"];
        } else {
            return null;
        }
    }

    /**
    * Sets the allowMultipleSelection
    * Indicates whether multiple values can be selected from the source.
    *
    * @param bool $val The value of the allowMultipleSelection
    *
    * @return PersonOrGroupColumn
    */
    public function setAllowMultipleSelection($val)
    {
        $this->_propDict["allowMultipleSelection"] = $val;
        return $this;
    }
    /**
    * Gets the chooseFromType
    * Whether to allow selection of people only, or people and groups. Must be one of peopleAndGroups or peopleOnly.
    *
    * @return string|null The chooseFromType
    */
    public function getChooseFromType()
    {
        if (array_key_exists("chooseFromType", $this->_propDict)) {
            return $this->_propDict["chooseFromType"];
        } else {
            return null;
        }
    }

    /**
    * Sets the chooseFromType
    * Whether to allow selection of people only, or people and groups. Must be one of peopleAndGroups or peopleOnly.
    *
    * @param string $val The value of the chooseFromType
    *
    * @return PersonOrGroupColumn
    */
    public function setChooseFromType($val)
    {
        $this->_propDict["chooseFromType"] = $val;
        return $this;
    }
    /**
    * Gets the displayAs
    * How to display the information about the person or group chosen. See below.
    *
    * @return string|null The displayAs
    */
    public function getDisplayAs()
    {
        if (array_key_exists("displayAs", $this->_propDict)) {
            return $this->_propDict["displayAs"];
        } else {
            return null;
        }
    }

    /**
    * Sets the displayAs
    * How to display the information about the person or group chosen. See below.
    *
    * @param string $val The value of the displayAs
    *
    * @return PersonOrGroupColumn
    */
    public function setDisplayAs($val)
    {
        $this->_propDict["displayAs"] = $val;
        return $this;
    }
}

Hry