Enum 1563 Privacy Notice Approval State in 28

App
System Application
Namespace
System.Privacy

Values, 3

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Privacy Notice/src/PrivacyNoticeApprovalState.Enum.al35 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.Privacy;

/// <summary>
/// Specifies the state of the Privacy Notice Approval.
/// </summary>
enum 1563 "Privacy Notice Approval State"
{
    Extensible = false;

    /// <summary>
    /// No decision has been made for the Privacy Notice.
    /// </summary>
    value(0; "Not set")
    {
    }

    /// <summary>
    /// The Privacy Notice has been agreed to.
    /// </summary>
    value(1; Agreed)
    {
    }

    /// <summary>
    /// The Privacy Notice was disagreed.
    /// </summary>
    value(2; Disagreed)
    {
    }
}

Values, 3

IdNameObsolete
0Not set-
1Agreed-
2Disagreed-