Enum 8908 Email Relation Type in 26
- App
- System Application
- Namespace
- System.Email
Versions171819202122232425262728latest
Source in 26
src/System Application/App/Email/src/Email/EmailRelationType.Enum.al31 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.Email;
/// <summary>
/// Represent the type of relation between an email and a source record.
/// </summary>
enum 8908 "Email Relation Type"
{
Access = Public;
Extensible = true;
/// <summary>
/// Primary source of an email. There should only be one primary source for an email.
/// </summary>
value(0; "Primary Source")
{
Caption = 'Primary Source';
}
/// <summary>
/// Related entity of an email. An email can have many record relations of this type.
/// </summary>
value(1; "Related Entity")
{
Caption = 'Related Entity';
}
}Values, 2
| Id | Name | Obsolete |
|---|---|---|
| 0 | Primary Source | - |
| 1 | Related Entity | - |