Enum 2004 Azure AI Service
- App
- Base Application
- Namespace
- System.AI
- Versions
- 17-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/System/AI/AzureAIService.Enum.al25 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.AI;
/// <summary>
/// The types of Azure AI services that are available in Business Central.
/// </summary>
enum 2004 "Azure AI Service"
{
Extensible = false;
/// <summary>
/// Value corresponds to an Azure Machine Learning service.
/// </summary>
value(0; "Machine Learning")
{
Caption = 'Machine Learning';
}
/// <summary>
/// Value corresponds to an Azure Computer Vision service.
/// </summary>
value(1; "Computer Vision")
{
Caption = 'Computer Vision';
}
}