PATH:
home
/
centosnipponia
/
public_html
/
msg
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
CallRecords
/
Model
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ParticipantEndpoint 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\CallRecords\Model; /** * ParticipantEndpoint 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 ParticipantEndpoint extends Endpoint { /** * Gets the feedback * The feedback provided by the user of this endpoint about the quality of the session. * * @return UserFeedback|null The feedback */ public function getFeedback() { if (array_key_exists("feedback", $this->_propDict)) { if (is_a($this->_propDict["feedback"], "\Microsoft\Graph\CallRecords\Model\UserFeedback") || is_null($this->_propDict["feedback"])) { return $this->_propDict["feedback"]; } else { $this->_propDict["feedback"] = new UserFeedback($this->_propDict["feedback"]); return $this->_propDict["feedback"]; } } return null; } /** * Sets the feedback * The feedback provided by the user of this endpoint about the quality of the session. * * @param UserFeedback $val The value to assign to the feedback * * @return ParticipantEndpoint The ParticipantEndpoint */ public function setFeedback($val) { $this->_propDict["feedback"] = $val; return $this; } /** * Gets the identity * Identity associated with the endpoint. * * @return \Microsoft\Graph\Model\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 \Microsoft\Graph\Model\IdentitySet($this->_propDict["identity"]); return $this->_propDict["identity"]; } } return null; } /** * Sets the identity * Identity associated with the endpoint. * * @param \Microsoft\Graph\Model\IdentitySet $val The value to assign to the identity * * @return ParticipantEndpoint The ParticipantEndpoint */ public function setIdentity($val) { $this->_propDict["identity"] = $val; return $this; } }
[+]
..
[-] AudioCodec.php
[edit]
[-] CallRecord.php
[edit]
[-] CallType.php
[edit]
[-] ClientPlatform.php
[edit]
[-] ClientUserAgent.php
[edit]
[-] DeviceInfo.php
[edit]
[-] DirectRoutingLogRow.php
[edit]
[-] Endpoint.php
[edit]
[-] FailureInfo.php
[edit]
[-] FailureStage.php
[edit]
[-] FeedbackTokenSet.php
[edit]
[-] Media.php
[edit]
[-] MediaStream.php
[edit]
[-] MediaStreamDirection.php
[edit]
[-] Modality.php
[edit]
[-] NetworkConnectionType.php
[edit]
[-] NetworkInfo.php
[edit]
[-] NetworkTransportProtocol.php
[edit]
[-] ParticipantEndpoint.php
[edit]
[-] ProductFamily.php
[edit]
[-] PstnCallDurationSource.php
[edit]
[-] PstnCallLogRow.php
[edit]
[-] Segment.php
[edit]
[-] ServiceEndpoint.php
[edit]
[-] ServiceRole.php
[edit]
[-] ServiceUserAgent.php
[edit]
[-] Session.php
[edit]
[-] TraceRouteHop.php
[edit]
[-] UserAgent.php
[edit]
[-] UserFeedback.php
[edit]
[-] UserFeedbackRating.php
[edit]
[-] VideoCodec.php
[edit]
[-] WifiBand.php
[edit]
[-] WifiRadioType.php
[edit]
[-] .htaccess.disabled
[edit]