Webiant Logo Webiant Logo
  1. No results found.

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

GooglePayModel.cs

using Nop.Plugin.Payments.PayPalCommerce.Domain;

namespace Nop.Plugin.Payments.PayPalCommerce.Models.Public;

/// 
/// Represents the Google Pay model
/// 
public record GooglePayModel : OrderModel
{
    #region Properties

    public ButtonPlacement Placement { get; set; }

    public string Country { get; set; }

    public string CurrencyCode { get; set; }

    public bool ShippingIsRequired { get; set; }

    public List<(string Type, string Price, string Status, string Label)> Items { get; set; } = new();

    #endregion
}