Enum 96 Payment Balance Account Type

App
Base Application
Namespace
Microsoft.Bank.Payment
Versions
17-28

Values, 2

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Bank/Payment/PaymentBalanceAccountType.Enum.al25 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 Microsoft.Bank.Payment;

/// <summary>
/// Defines the types of balancing accounts that can be used for payment transactions.
/// Used in payment processing to specify the account type for balancing entries.
/// </summary>
enum 96 "Payment Balance Account Type"
{
    Extensible = true;
    AssignmentCompatibility = true;

    /// <summary>
    /// General Ledger account used as balancing account for payment transactions.
    /// </summary>
    value(0; "G/L Account") { Caption = 'G/L Account'; }
    /// <summary>
    /// Bank account used as balancing account for payment transactions.
    /// </summary>
    value(1; "Bank Account") { Caption = 'Bank Account'; }
}