Enum 8703 Feature Uptake Status in 27

App
System Application
Namespace
System.Telemetry

Values, 4

Versions171819202122232425262728latest

Source242526272829

Source in 27

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

IdNameObsolete
0Undiscovered-
1Discovered-
2Set up-
3Used-