Enum 7774 Copilot Availability in 26
- App
- System Application
- Namespace
- System.AI
Versions171819202122232425262728latest
Source in 26
src/System Application/App/AI/src/Copilot/CopilotAvailability.Enum.al38 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 availability of the Copilot Capability.
/// </summary>
enum 7774 "Copilot Availability"
{
Access = Public;
Extensible = false;
/// <summary>
/// The Copilot Capability is in preview.
/// </summary>
value(0; Preview)
{
Caption = 'Preview';
}
/// <summary>
/// The Copilot Capability is generally available.
/// </summary>
value(1; "Generally Available")
{
Caption = 'Generally Available';
}
/// <summary>
/// The Copilot Capability is in early preview.
/// </summary>
value(2; "Early Preview")
{
Caption = 'Early preview';
}
}Values, 3
| Id | Name | Obsolete |
|---|---|---|
| 0 | Preview | - |
| 1 | Generally Available | - |
| 2 | Early Preview | - |