src/Relecloud.Web.CallCenter.Api/Services/PaymentGatewayService/CapturePaymentResultStatus.cs (9 lines of code) (raw):
namespace Relecloud.Web.Api.Services.PaymentGatewayService
{
public enum CapturePaymentResultStatus
{
CaptureSuccessful = 0,
InvalidHoldCode = 1,
InvalidHoldAmount = 2,
}
}