Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PaymentType.cs

namespace Nop.Plugin.Payments.PayPalCommerce.Domain;

/// 
/// Represents payment type enumeration
/// 
public enum PaymentType
{
    /// 
    /// The merchant intends to capture payment immediately after the customer makes a payment.
    /// 
    Capture,

    /// 
    /// The merchant intends to authorize a payment and place funds on hold after the customer makes a payment. 
    /// Authorized payments are guaranteed for up to three days but are available to capture for up to 29 days.
    /// After the three-day honor period, the original authorized payment expires and you must re-authorize the payment.
    /// 
    Authorize
}