Enum 7775 Copilot Status in 26

App
System Application
Namespace
System.AI

Values, 2

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/AI/src/Copilot/CopilotStatus.Enum.al30 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.AI;

/// <summary>
/// The status of the Copilot Capability.
/// </summary>
enum 7775 "Copilot Status"
{
    Access = Public;
    Extensible = false;

    /// <summary>
    /// The Copilot is active.
    /// </summary>
    value(0; Active)
    {
        Caption = 'Active';
    }

    /// <summary>
    /// The Copilot is inactive.
    /// </summary>
    value(1; Inactive)
    {
        Caption = 'Inactive';
    }
}

Values, 2

IdNameObsolete
0Active-
1Inactive-