📄 Source: EnterpriseUpgradeEvent.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\AndroidManagement;
class EnterpriseUpgradeEvent extends \Google\Model
{
/**
* Unspecified. This value is not used.
*/
public const UPGRADE_STATE_UPGRADE_STATE_UNSPECIFIED = 'UPGRADE_STATE_UNSPECIFIED';
/**
* The upgrade has succeeded.
*/
public const UPGRADE_STATE_UPGRADE_STATE_SUCCEEDED = 'UPGRADE_STATE_SUCCEEDED';
/**
* The name of upgraded enterprise in the format "enterprises/{enterprise}"
*
* @var string
*/
public $enterprise;
/**
* Output only. The upgrade state of the enterprise.
*
* @var string
*/
public $upgradeState;
/**
* The name of upgraded enterprise in the format "enterprises/{enterprise}"
*
* @param string $enterprise
*/
public function setEnterprise($enterprise)
{
$this->enterprise = $enterprise;
}
/**
* @return string
*/
public function getEnterprise()
{
return $this->enterprise;
}
/**
* Output only. The upgrade state of the enterprise.
*
* Accepted values: UPGRADE_STATE_UNSPECIFIED, UPGRADE_STATE_SUCCEEDED
*
* @param self::UPGRADE_STATE_* $upgradeState
*/
public function setUpgradeState($upgradeState)
{
$this->upgradeState = $upgradeState;
}
/**
* @return self::UPGRADE_STATE_*
*/
public function getUpgradeState()
{
return $this->upgradeState;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(EnterpriseUpgradeEvent::class, 'Google_Service_AndroidManagement_EnterpriseUpgradeEvent');
← Back