src/Relecloud.Web.CallCenter.Api/Services/PaymentGatewayService/PreAuthPaymentResultStatus.cs (10 lines of code) (raw):
// Copyright (c) Microsoft Corporation. All Rights Reserved.
// Licensed under the MIT License.
namespace Relecloud.Web.Api.Services.PaymentGatewayService
{
public enum PreAuthPaymentResultStatus
{
FundsOnHold = 0,
InsufficientFunds = 1,
NotAValidCard = 3
}
}