1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagedTenantTicketingEndpo...

225 lines
5.6 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* ManagedTenantTicketingEndpoint 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 Beta\Microsoft\Graph\ManagedTenants\Model;
/**
* ManagedTenantTicketingEndpoint 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 ManagedTenantTicketingEndpoint extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the createdByUserId
*
* @return string|null The createdByUserId
*/
public function getCreatedByUserId()
{
if (array_key_exists("createdByUserId", $this->_propDict)) {
return $this->_propDict["createdByUserId"];
} else {
return null;
}
}
/**
* Sets the createdByUserId
*
* @param string $val The createdByUserId
*
* @return ManagedTenantTicketingEndpoint
*/
public function setCreatedByUserId($val)
{
$this->_propDict["createdByUserId"] = $val;
return $this;
}
/**
* Gets the createdDateTime
*
* @return \DateTime|null The createdDateTime
*/
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
}
/**
* Sets the createdDateTime
*
* @param \DateTime $val The createdDateTime
*
* @return ManagedTenantTicketingEndpoint
*/
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
}
/**
* Gets the displayName
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}
/**
* Sets the displayName
*
* @param string $val The displayName
*
* @return ManagedTenantTicketingEndpoint
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the emailAddress
*
* @return string|null The emailAddress
*/
public function getEmailAddress()
{
if (array_key_exists("emailAddress", $this->_propDict)) {
return $this->_propDict["emailAddress"];
} else {
return null;
}
}
/**
* Sets the emailAddress
*
* @param string $val The emailAddress
*
* @return ManagedTenantTicketingEndpoint
*/
public function setEmailAddress($val)
{
$this->_propDict["emailAddress"] = $val;
return $this;
}
/**
* Gets the lastActionByUserId
*
* @return string|null The lastActionByUserId
*/
public function getLastActionByUserId()
{
if (array_key_exists("lastActionByUserId", $this->_propDict)) {
return $this->_propDict["lastActionByUserId"];
} else {
return null;
}
}
/**
* Sets the lastActionByUserId
*
* @param string $val The lastActionByUserId
*
* @return ManagedTenantTicketingEndpoint
*/
public function setLastActionByUserId($val)
{
$this->_propDict["lastActionByUserId"] = $val;
return $this;
}
/**
* Gets the lastActionDateTime
*
* @return \DateTime|null The lastActionDateTime
*/
public function getLastActionDateTime()
{
if (array_key_exists("lastActionDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastActionDateTime"], "\DateTime") || is_null($this->_propDict["lastActionDateTime"])) {
return $this->_propDict["lastActionDateTime"];
} else {
$this->_propDict["lastActionDateTime"] = new \DateTime($this->_propDict["lastActionDateTime"]);
return $this->_propDict["lastActionDateTime"];
}
}
return null;
}
/**
* Sets the lastActionDateTime
*
* @param \DateTime $val The lastActionDateTime
*
* @return ManagedTenantTicketingEndpoint
*/
public function setLastActionDateTime($val)
{
$this->_propDict["lastActionDateTime"] = $val;
return $this;
}
/**
* Gets the phoneNumber
*
* @return string|null The phoneNumber
*/
public function getPhoneNumber()
{
if (array_key_exists("phoneNumber", $this->_propDict)) {
return $this->_propDict["phoneNumber"];
} else {
return null;
}
}
/**
* Sets the phoneNumber
*
* @param string $val The phoneNumber
*
* @return ManagedTenantTicketingEndpoint
*/
public function setPhoneNumber($val)
{
$this->_propDict["phoneNumber"] = $val;
return $this;
}
}