Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* ParticipantInfo 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;
/**
* ParticipantInfo 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 ParticipantInfo extends Entity
{
/**
* Gets the countryCode
* The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only.
*
* @return string|null The countryCode
*/
public function getCountryCode()
{
if (array_key_exists("countryCode", $this->_propDict)) {
return $this->_propDict["countryCode"];
} else {
return null;
}
}
/**
* Sets the countryCode
* The ISO 3166-1 Alpha-2 country code of the participant's best estimated physical location at the start of the call. Read-only.
*
* @param string $val The value of the countryCode
*
* @return ParticipantInfo
*/
public function setCountryCode($val)
{
$this->_propDict["countryCode"] = $val;
return $this;
}
/**
* Gets the endpointType
* The type of endpoint the participant is using. Possible values are: default, skypeForBusiness, or skypeForBusinessVoipPhone. Read-only.
*
* @return EndpointType|null The endpointType
*/
public function getEndpointType()
{
if (array_key_exists("endpointType", $this->_propDict)) {
if (is_a($this->_propDict["endpointType"], "\Microsoft\Graph\Model\EndpointType") || is_null($this->_propDict["endpointType"])) {
return $this->_propDict["endpointType"];
} else {
$this->_propDict["endpointType"] = new EndpointType($this->_propDict["endpointType"]);
return $this->_propDict["endpointType"];
}
}
return null;
}
/**
* Sets the endpointType
* The type of endpoint the participant is using. Possible values are: default, skypeForBusiness, or skypeForBusinessVoipPhone. Read-only.
*
* @param EndpointType $val The value to assign to the endpointType
*
* @return ParticipantInfo The ParticipantInfo
*/
public function setEndpointType($val)
{
$this->_propDict["endpointType"] = $val;
return $this;
}
/**
* Gets the identity
* The identitySet associated with this participant. Read-only.
*
* @return IdentitySet|null The identity
*/
public function getIdentity()
{
if (array_key_exists("identity", $this->_propDict)) {
if (is_a($this->_propDict["identity"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["identity"])) {
return $this->_propDict["identity"];
} else {
$this->_propDict["identity"] = new IdentitySet($this->_propDict["identity"]);
return $this->_propDict["identity"];
}
}
return null;
}
/**
* Sets the identity
* The identitySet associated with this participant. Read-only.
*
* @param IdentitySet $val The value to assign to the identity
*
* @return ParticipantInfo The ParticipantInfo
*/
public function setIdentity($val)
{
$this->_propDict["identity"] = $val;
return $this;
}
/**
* Gets the languageId
* The language culture string. Read-only.
*
* @return string|null The languageId
*/
public function getLanguageId()
{
if (array_key_exists("languageId", $this->_propDict)) {
return $this->_propDict["languageId"];
} else {
return null;
}
}
/**
* Sets the languageId
* The language culture string. Read-only.
*
* @param string $val The value of the languageId
*
* @return ParticipantInfo
*/
public function setLanguageId($val)
{
$this->_propDict["languageId"] = $val;
return $this;
}
/**
* Gets the participantId
* The participant ID of the participant. Read-only.
*
* @return string|null The participantId
*/
public function getParticipantId()
{
if (array_key_exists("participantId", $this->_propDict)) {
return $this->_propDict["participantId"];
} else {
return null;
}
}
/**
* Sets the participantId
* The participant ID of the participant. Read-only.
*
* @param string $val The value of the participantId
*
* @return ParticipantInfo
*/
public function setParticipantId($val)
{
$this->_propDict["participantId"] = $val;
return $this;
}
/**
* Gets the region
* The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only.
*
* @return string|null The region
*/
public function getRegion()
{
if (array_key_exists("region", $this->_propDict)) {
return $this->_propDict["region"];
} else {
return null;
}
}
/**
* Sets the region
* The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only.
*
* @param string $val The value of the region
*
* @return ParticipantInfo
*/
public function setRegion($val)
{
$this->_propDict["region"] = $val;
return $this;
}
}