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

36 lines
963 B
PHP
Raw Normal View History

2022-05-31 13:08:55 -06:00
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
2023-04-20 12:43:04 -06:00
* PstnUserBlockMode File
2022-05-31 13:08:55 -06:00
* 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
*/
2023-04-20 12:43:04 -06:00
namespace Beta\Microsoft\Graph\CallRecords\Model;
2022-05-31 13:08:55 -06:00
use Microsoft\Graph\Core\Enum;
/**
2023-04-20 12:43:04 -06:00
* PstnUserBlockMode class
2022-05-31 13:08:55 -06:00
*
* @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
*/
2023-04-20 12:43:04 -06:00
class PstnUserBlockMode extends Enum
2022-05-31 13:08:55 -06:00
{
/**
2023-04-20 12:43:04 -06:00
* The Enum PstnUserBlockMode
2022-05-31 13:08:55 -06:00
*/
2023-04-20 12:43:04 -06:00
const BLOCKED = "blocked";
const UNBLOCKED = "unblocked";
2022-05-31 13:08:55 -06:00
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue";
}