Enum 9350 Graph API Version, source in 27

Source242526272829metadata in 27

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;
    }
}