Try your search with a different keyword or use * as a wildcard.
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
}