Enum 9350 Graph API Version
- App
- System Application
- Namespace
- System.Integration.Graph
- Versions
- 23-28
Versions171819202122232425262728
Source in 29
src/System Application/App/MicrosoftGraph/src/GraphAPIVersion.Enum.al24 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.Integration.Graph;
/// <summary>
/// Defines the available API versions for Microsoft Graph API.
/// See: https://learn.microsoft.com/en-us/graph/versioning-and-support#versions
/// </summary>
enum 9350 "Graph API Version"
{
Access = Public;
Extensible = false;
value(0; "v1.0")
{
Caption = 'v1.0', Locked = true;
}
value(9999; "beta")
{
Caption = 'beta', Locked = true;
}
}