Table 8912 Email Rate Limit in 25

App
System Application
Namespace
System.Email

Fields, 4Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 25

src/System Application/App/Email/src/RateLimit/EmailRateLimit.Table.al49 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>
/// The rate limits for email accounts.
/// </summary>
table 8912 "Email Rate Limit"
{
    Access = Internal;
    InherentPermissions = X;
    InherentEntitlements = X;

    fields
    {
        field(1; "Account Id"; Guid)
        {
            DataClassification = SystemMetadata;
        }
        field(2; "Email Address"; Text[2048])
        {
            DataClassification = CustomerContent;
        }
        field(3; "Rate Limit"; Integer)
        {
            DataClassification = SystemMetadata;
            MinValue = 0;
        }
        field(4; Connector; Enum "Email Connector")
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PK; "Account Id", Connector)
        {
            Clustered = true;
        }
        key(Name; "Email Address")
        {
            Description = 'Used for sorting by Email Address.';
        }
    }
}

Fields, 4

IdNameTypeObsolete
1Account IdGuid-
2Email AddressText[2048]-
3Rate LimitInteger-
4ConnectorEnum Email Connector-

Keys, 2

NameFieldsObsolete
PK, clusteredAccount Id, Connector-
NameEmail Address-