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

36 lines
954 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
* CloudPcPowerState 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\Model;
2022-05-31 13:08:55 -06:00
use Microsoft\Graph\Core\Enum;
/**
2023-04-20 12:43:04 -06:00
* CloudPcPowerState 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 CloudPcPowerState extends Enum
2022-05-31 13:08:55 -06:00
{
/**
2023-04-20 12:43:04 -06:00
* The Enum CloudPcPowerState
2022-05-31 13:08:55 -06:00
*/
2023-04-20 12:43:04 -06:00
const RUNNING = "running";
const POWERED_OFF = "poweredOff";
2022-05-31 13:08:55 -06:00
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue";
}