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. * * PstnCallLogRow 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; /** * PstnCallLogRow 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 PstnCallLogRow extends \Microsoft\Graph\Model\Entity { /** * Gets the callDurationSource * The source of the call duration data. If the call uses a third-party telecommunications operator via the Operator Connect Program, the operator may provide their own call duration data. In this case, the property value is operator. Otherwise, the value is microsoft. * * @return PstnCallDurationSource|null The callDurationSource */ public function getCallDurationSource() { if (array_key_exists("callDurationSource", $this->_propDict)) { if (is_a($this->_propDict["callDurationSource"], "\Microsoft\Graph\CallRecords\Model\PstnCallDurationSource") || is_null($this->_propDict["callDurationSource"])) { return $this->_propDict["callDurationSource"]; } else { $this->_propDict["callDurationSource"] = new PstnCallDurationSource($this->_propDict["callDurationSource"]); return $this->_propDict["callDurationSource"]; } } return null; } /** * Sets the callDurationSource * The source of the call duration data. If the call uses a third-party telecommunications operator via the Operator Connect Program, the operator may provide their own call duration data. In this case, the property value is operator. Otherwise, the value is microsoft. * * @param PstnCallDurationSource $val The value to assign to the callDurationSource * * @return PstnCallLogRow The PstnCallLogRow */ public function setCallDurationSource($val) { $this->_propDict["callDurationSource"] = $val; return $this; } /** * Gets the calleeNumber * Number dialed in E.164 format. * * @return string|null The calleeNumber */ public function getCalleeNumber() { if (array_key_exists("calleeNumber", $this->_propDict)) { return $this->_propDict["calleeNumber"]; } else { return null; } } /** * Sets the calleeNumber * Number dialed in E.164 format. * * @param string $val The value of the calleeNumber * * @return PstnCallLogRow */ public function setCalleeNumber($val) { $this->_propDict["calleeNumber"] = $val; return $this; } /** * Gets the callerNumber * Number that received the call for inbound calls or the number dialed for outbound calls. E.164 format. * * @return string|null The callerNumber */ public function getCallerNumber() { if (array_key_exists("callerNumber", $this->_propDict)) { return $this->_propDict["callerNumber"]; } else { return null; } } /** * Sets the callerNumber * Number that received the call for inbound calls or the number dialed for outbound calls. E.164 format. * * @param string $val The value of the callerNumber * * @return PstnCallLogRow */ public function setCallerNumber($val) { $this->_propDict["callerNumber"] = $val; return $this; } /** * Gets the callId * Call identifier. Not guaranteed to be unique. * * @return string|null The callId */ public function getCallId() { if (array_key_exists("callId", $this->_propDict)) { return $this->_propDict["callId"]; } else { return null; } } /** * Sets the callId * Call identifier. Not guaranteed to be unique. * * @param string $val The value of the callId * * @return PstnCallLogRow */ public function setCallId($val) { $this->_propDict["callId"] = $val; return $this; } /** * Gets the callType * Whether the call was a PSTN outbound or inbound call and the type of call such as a call placed by a user or an audio conference. * * @return string|null The callType */ public function getCallType() { if (array_key_exists("callType", $this->_propDict)) { return $this->_propDict["callType"]; } else { return null; } } /** * Sets the callType * Whether the call was a PSTN outbound or inbound call and the type of call such as a call placed by a user or an audio conference. * * @param string $val The value of the callType * * @return PstnCallLogRow */ public function setCallType($val) { $this->_propDict["callType"] = $val; return $this; } /** * Gets the charge * Amount of money or cost of the call that is charged to your account. * * @return \Microsoft\Graph\Model\Decimal|null The charge */ public function getCharge() { if (array_key_exists("charge", $this->_propDict)) { if (is_a($this->_propDict["charge"], "\Microsoft\Graph\Model\Decimal") || is_null($this->_propDict["charge"])) { return $this->_propDict["charge"]; } else { $this->_propDict["charge"] = new \Microsoft\Graph\Model\Decimal($this->_propDict["charge"]); return $this->_propDict["charge"]; } } return null; } /** * Sets the charge * Amount of money or cost of the call that is charged to your account. * * @param \Microsoft\Graph\Model\Decimal $val The value to assign to the charge * * @return PstnCallLogRow The PstnCallLogRow */ public function setCharge($val) { $this->_propDict["charge"] = $val; return $this; } /** * Gets the conferenceId * ID of the audio conference. * * @return string|null The conferenceId */ public function getConferenceId() { if (array_key_exists("conferenceId", $this->_propDict)) { return $this->_propDict["conferenceId"]; } else { return null; } } /** * Sets the conferenceId * ID of the audio conference. * * @param string $val The value of the conferenceId * * @return PstnCallLogRow */ public function setConferenceId($val) { $this->_propDict["conferenceId"] = $val; return $this; } /** * Gets the connectionCharge * Connection fee price. * * @return \Microsoft\Graph\Model\Decimal|null The connectionCharge */ public function getConnectionCharge() { if (array_key_exists("connectionCharge", $this->_propDict)) { if (is_a($this->_propDict["connectionCharge"], "\Microsoft\Graph\Model\Decimal") || is_null($this->_propDict["connectionCharge"])) { return $this->_propDict["connectionCharge"]; } else { $this->_propDict["connectionCharge"] = new \Microsoft\Graph\Model\Decimal($this->_propDict["connectionCharge"]); return $this->_propDict["connectionCharge"]; } } return null; } /** * Sets the connectionCharge * Connection fee price. * * @param \Microsoft\Graph\Model\Decimal $val The value to assign to the connectionCharge * * @return PstnCallLogRow The PstnCallLogRow */ public function setConnectionCharge($val) { $this->_propDict["connectionCharge"] = $val; return $this; } /** * Gets the currency * Type of currency used to calculate the cost of the call (ISO 4217). * * @return string|null The currency */ public function getCurrency() { if (array_key_exists("currency", $this->_propDict)) { return $this->_propDict["currency"]; } else { return null; } } /** * Sets the currency * Type of currency used to calculate the cost of the call (ISO 4217). * * @param string $val The value of the currency * * @return PstnCallLogRow */ public function setCurrency($val) { $this->_propDict["currency"] = $val; return $this; } /** * Gets the destinationContext * Whether the call was domestic (within a country or region) or international (outside a country or region) based on the user's location. * * @return string|null The destinationContext */ public function getDestinationContext() { if (array_key_exists("destinationContext", $this->_propDict)) { return $this->_propDict["destinationContext"]; } else { return null; } } /** * Sets the destinationContext * Whether the call was domestic (within a country or region) or international (outside a country or region) based on the user's location. * * @param string $val The value of the destinationContext * * @return PstnCallLogRow */ public function setDestinationContext($val) { $this->_propDict["destinationContext"] = $val; return $this; } /** * Gets the destinationName * Country or region dialed. * * @return string|null The destinationName */ public function getDestinationName() { if (array_key_exists("destinationName", $this->_propDict)) { return $this->_propDict["destinationName"]; } else { return null; } } /** * Sets the destinationName * Country or region dialed. * * @param string $val The value of the destinationName * * @return PstnCallLogRow */ public function setDestinationName($val) { $this->_propDict["destinationName"] = $val; return $this; } /** * Gets the duration * How long the call was connected, in seconds. * * @return int|null The duration */ public function getDuration() { if (array_key_exists("duration", $this->_propDict)) { return $this->_propDict["duration"]; } else { return null; } } /** * Sets the duration * How long the call was connected, in seconds. * * @param int $val The value of the duration * * @return PstnCallLogRow */ public function setDuration($val) { $this->_propDict["duration"] = $val; return $this; } /** * Gets the endDateTime * Call end time. * * @return \DateTime|null The endDateTime */ public function getEndDateTime() { if (array_key_exists("endDateTime", $this->_propDict)) { if (is_a($this->_propDict["endDateTime"], "\DateTime") || is_null($this->_propDict["endDateTime"])) { return $this->_propDict["endDateTime"]; } else { $this->_propDict["endDateTime"] = new \DateTime($this->_propDict["endDateTime"]); return $this->_propDict["endDateTime"]; } } return null; } /** * Sets the endDateTime * Call end time. * * @param \DateTime $val The value to assign to the endDateTime * * @return PstnCallLogRow The PstnCallLogRow */ public function setEndDateTime($val) { $this->_propDict["endDateTime"] = $val; return $this; } /** * Gets the id * Unique call identifier. GUID. * * @return string|null The id */ public function getId() { if (array_key_exists("id", $this->_propDict)) { return $this->_propDict["id"]; } else { return null; } } /** * Sets the id * Unique call identifier. GUID. * * @param string $val The value of the id * * @return PstnCallLogRow */ public function setId($val) { $this->_propDict["id"] = $val; return $this; } /** * Gets the inventoryType * User's phone number type, such as a service of toll-free number. * * @return string|null The inventoryType */ public function getInventoryType() { if (array_key_exists("inventoryType", $this->_propDict)) { return $this->_propDict["inventoryType"]; } else { return null; } } /** * Sets the inventoryType * User's phone number type, such as a service of toll-free number. * * @param string $val The value of the inventoryType * * @return PstnCallLogRow */ public function setInventoryType($val) { $this->_propDict["inventoryType"] = $val; return $this; } /** * Gets the licenseCapability * The license used for the call. * * @return string|null The licenseCapability */ public function getLicenseCapability() { if (array_key_exists("licenseCapability", $this->_propDict)) { return $this->_propDict["licenseCapability"]; } else { return null; } } /** * Sets the licenseCapability * The license used for the call. * * @param string $val The value of the licenseCapability * * @return PstnCallLogRow */ public function setLicenseCapability($val) { $this->_propDict["licenseCapability"] = $val; return $this; } /** * Gets the operator * The telecommunications operator which provided PSTN services for this call. This may be Microsoft, or it may be a third-party operator via the Operator Connect Program. * * @return string|null The operator */ public function getOperator() { if (array_key_exists("operator", $this->_propDict)) { return $this->_propDict["operator"]; } else { return null; } } /** * Sets the operator * The telecommunications operator which provided PSTN services for this call. This may be Microsoft, or it may be a third-party operator via the Operator Connect Program. * * @param string $val The value of the operator * * @return PstnCallLogRow */ public function setOperator($val) { $this->_propDict["operator"] = $val; return $this; } /** * Gets the startDateTime * Call start time. * * @return \DateTime|null The startDateTime */ public function getStartDateTime() { if (array_key_exists("startDateTime", $this->_propDict)) { if (is_a($this->_propDict["startDateTime"], "\DateTime") || is_null($this->_propDict["startDateTime"])) { return $this->_propDict["startDateTime"]; } else { $this->_propDict["startDateTime"] = new \DateTime($this->_propDict["startDateTime"]); return $this->_propDict["startDateTime"]; } } return null; } /** * Sets the startDateTime * Call start time. * * @param \DateTime $val The value to assign to the startDateTime * * @return PstnCallLogRow The PstnCallLogRow */ public function setStartDateTime($val) { $this->_propDict["startDateTime"] = $val; return $this; } /** * Gets the tenantCountryCode * Country code of the tenant, ISO 3166-1 alpha-2. * * @return string|null The tenantCountryCode */ public function getTenantCountryCode() { if (array_key_exists("tenantCountryCode", $this->_propDict)) { return $this->_propDict["tenantCountryCode"]; } else { return null; } } /** * Sets the tenantCountryCode * Country code of the tenant, ISO 3166-1 alpha-2. * * @param string $val The value of the tenantCountryCode * * @return PstnCallLogRow */ public function setTenantCountryCode($val) { $this->_propDict["tenantCountryCode"] = $val; return $this; } /** * Gets the usageCountryCode * Country code of the user, ISO 3166-1 alpha-2. * * @return string|null The usageCountryCode */ public function getUsageCountryCode() { if (array_key_exists("usageCountryCode", $this->_propDict)) { return $this->_propDict["usageCountryCode"]; } else { return null; } } /** * Sets the usageCountryCode * Country code of the user, ISO 3166-1 alpha-2. * * @param string $val The value of the usageCountryCode * * @return PstnCallLogRow */ public function setUsageCountryCode($val) { $this->_propDict["usageCountryCode"] = $val; return $this; } /** * Gets the userDisplayName * Display name of the user. * * @return string|null The userDisplayName */ public function getUserDisplayName() { if (array_key_exists("userDisplayName", $this->_propDict)) { return $this->_propDict["userDisplayName"]; } else { return null; } } /** * Sets the userDisplayName * Display name of the user. * * @param string $val The value of the userDisplayName * * @return PstnCallLogRow */ public function setUserDisplayName($val) { $this->_propDict["userDisplayName"] = $val; return $this; } /** * Gets the userId * Calling user's ID in Graph. GUID. This and other user info will be null/empty for bot call types (ucap_in, ucap_out). * * @return string|null The userId */ public function getUserId() { if (array_key_exists("userId", $this->_propDict)) { return $this->_propDict["userId"]; } else { return null; } } /** * Sets the userId * Calling user's ID in Graph. GUID. This and other user info will be null/empty for bot call types (ucap_in, ucap_out). * * @param string $val The value of the userId * * @return PstnCallLogRow */ public function setUserId($val) { $this->_propDict["userId"] = $val; return $this; } /** * Gets the userPrincipalName * UserPrincipalName (sign-in name) in Azure Active Directory. This is usually the same as user's SIP Address, and can be same as user's e-mail address. * * @return string|null The userPrincipalName */ public function getUserPrincipalName() { if (array_key_exists("userPrincipalName", $this->_propDict)) { return $this->_propDict["userPrincipalName"]; } else { return null; } } /** * Sets the userPrincipalName * UserPrincipalName (sign-in name) in Azure Active Directory. This is usually the same as user's SIP Address, and can be same as user's e-mail address. * * @param string $val The value of the userPrincipalName * * @return PstnCallLogRow */ public function setUserPrincipalName($val) { $this->_propDict["userPrincipalName"] = $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]