Enum 3904 Reten. Pol. Deleting, source in 27

Source242526272829metadata in 27

src/System Application/App/Retention Policy/src/Apply Retention Policy/RetenPolDeleting.Enum.al22 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.DataAdministration;

/// <summary>
/// This enum is used to determine the implementation codeunit called to delete expired records when applying a retention policy.
/// </summary>
enum 3904 "Reten. Pol. Deleting" implements "Reten. Pol. Deleting"
{
    Extensible = true;

    /// <summary>
    /// The default implementation.
    /// </summary>
    value(0; Default)
    {
        Implementation = "Reten. Pol. Deleting" = "Reten. Pol. Delete. Impl.";
    }
}