Enum 2011 Entity Text Tone in 26
- App
- System Application
- Namespace
- System.Text
Versions171819202122232425262728latest
Source in 26
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
| Id | Name | Obsolete |
|---|---|---|
| 0 | Formal | - |
| 1 | Casual | - |
| 2 | Inspiring | - |
| 3 | Upbeat | - |
| 4 | Creative | - |