Enum 9005 User Plan Experience in 27

App
System Application
Namespace
System.Azure.Identity

Values, 4

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Azure AD Plan/src/UserPlanExperience.Enum.al46 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.Azure.Identity;

/// <summary>
/// User plan experience. 
/// </summary>
enum 9005 "User Plan Experience"
{
    Extensible = false;

    /// <summary>
    /// Essentials plan.
    /// </summary>
    value(0; Essentials)
    {
        Caption = 'Essentials';
    }

    /// <summary>
    /// Premium plan.
    /// </summary>
    value(2; Premium)
    {
        Caption = 'Premium';
    }

    /// <summary>
    /// Basic plan.
    /// </summary>
    value(3; Basic)
    {
        Caption = 'Basic';
    }

    /// <summary>
    /// Other license type.
    /// </summary>
    value(10; Other)
    {
        Caption = 'Other';
    }
}

Values, 4

IdNameObsolete
0Essentials-
2Premium-
3Basic-
10Other-