Webiant Logo Webiant Logo
  1. No results found.

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

OrderMoney.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;

/// 
/// Represents the currency and amount for an order with the breakdown
/// 
public class OrderMoney : Money
{
    #region Properties

    /// 
    /// Gets or sets the breakdown of the amount. Breakdown provides details such as total item amount, total tax amount, shipping, handling, insurance, and discounts, if any.
    /// 
    [JsonProperty(PropertyName = "breakdown")]
    public OrderAmountBreakdown Breakdown { get; set; }

    #endregion
}