Enum 4692 Recurrence - Pattern

App
System Application
Namespace
System.DateTime
Versions
17-28

Values, 4

Versions171819202122232425262728

Source242526272829

Source in 29

src/System Application/App/Recurrence Schedule/src/RecurrencePattern.Enum.al42 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.DateTime;

/// <summary>
/// This enum has the occurrence patterns for the recurrence.
/// </summary>
enum 4692 "Recurrence - Pattern"
{
    Extensible = false;

    /// <summary>
    /// Specifies that the recurrence will occur daily.
    /// </summary>
    value(0; Daily)
    {
    }

    /// <summary>
    /// Specifies that the recurrence will occur weekly.
    /// </summary>
    value(1; Weekly)
    {
    }

    /// <summary>
    /// Specifies that the recurrence will occur monthly.
    /// </summary>
    value(2; Monthly)
    {
    }

    /// <summary>
    /// Specifies that the recurrence will occur yearly.
    /// </summary>
    value(3; Yearly)
    {
    }
}