Webiant Logo Webiant Logo
  1. No results found.

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

ButtonPlacement.cs

namespace Nop.Plugin.Payments.PayPalCommerce.Domain;

/// 
/// Represents the button placement
/// 
public enum ButtonPlacement
{
    /// 
    /// Shopping cart page
    /// 
    Cart,

    /// 
    /// Product details page
    /// 
    Product,

    /// 
    /// Checkout payment method page
    /// 
    PaymentMethod
}