Enum 8703 Feature Uptake Status in 24
- App
- System Application
- Namespace
- System.Telemetry
Versions171819202122232425262728latest
Source in 24
src/System Application/App/Telemetry/src/Feature Telemetry/FeatureUptakeStatus.Enum.al47 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Telemetry;
/// <summary>
/// Specifies the uptake status of an application feature.
/// </summary>
enum 8703 "Feature Uptake Status"
{
Access = Public;
Extensible = false;
/// <summary>
/// The feature has not been discovered.
/// </summary>
value(0; Undiscovered)
{
Caption = 'Undiscovered', Locked = true;
}
/// <summary>
/// The feature has been discovered.
/// </summary>
value(1; Discovered)
{
Caption = 'Discovered', Locked = true;
}
/// <summary>
/// The feature has been set up.
/// </summary>
value(2; "Set up")
{
Caption = 'Set up', Locked = true;
}
/// <summary>
/// The feature has been used.
/// </summary>
value(3; Used)
{
Caption = 'Used', Locked = true;
}
}Values, 4
| Id | Name | Obsolete |
|---|---|---|
| 0 | Undiscovered | - |
| 1 | Discovered | - |
| 2 | Set up | - |
| 3 | Used | - |