Enum 2011 Entity Text Tone in 28

App
System Application
Namespace
System.Text

Values, 5

Versions171819202122232425262728latest

Source242526272829

Source in 28

src/System Application/App/Entity Text/src/EntityTextTone.Enum.al54 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.Text;

/// <summary>
/// Enum containing supported tones of text for generation.
/// </summary>
enum 2011 "Entity Text Tone"
{
    Extensible = false;

    /// <summary>
    /// The tone of voice should be formal.
    /// </summary>
    value(0; Formal)
    {
        Caption = 'Formal';
    }

    /// <summary>
    /// The tone of voice should be casual.
    /// </summary>
    value(1; Casual)
    {
        Caption = 'Casual';
    }

    /// <summary>
    /// The tone of voice should be inspiring.
    /// </summary>
    value(2; Inspiring)
    {
        Caption = 'Inspiring';
    }

    /// <summary>
    /// The tone of voice should be upbeat.
    /// </summary>
    value(3; Upbeat)
    {
        Caption = 'Upbeat';
    }

    /// <summary>
    /// The tone of voice should be creative.
    /// </summary>
    value(4; Creative)
    {
        Caption = 'Creative';
    }
}

Values, 5

IdNameObsolete
0Formal-
1Casual-
2Inspiring-
3Upbeat-
4Creative-