Interface Default Email Rate Limit, source in 27

Source242526272829metadata in 27

src/System Application/App/Email/src/Connector/DefaultEmailRateLimit.Interface.al18 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>
/// A default email rate limit interface used to limit how many e-mails per second a connector can send.
/// </summary>
interface "Default Email Rate Limit"
{
    /// <summary>
    /// Provides the default email rate limit for the connector.
    /// </summary>
    /// <returns>A default email rate limit.</returns>
    procedure GetDefaultEmailRateLimit(): Integer;
}