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 net amount breakdown
///
public class NetAmountBreakdown
{
#region Properties
///
/// Gets or sets the net amount debited from the merchant's PayPal account.
///
[JsonProperty(PropertyName = "payable_amount")]
public Money PayableAmount { get; set; }
///
/// Gets or sets the converted payable amount.
///
[JsonProperty(PropertyName = "converted_amount")]
public Money ConvertedAmount { get; set; }
///
/// Gets or sets the exchange rate that determines the amount that is credited to the payee's PayPal account. Returned when the currency of the transaction is different from the currency of the PayPal account where the payee wants to credit the funds.
///
[JsonProperty(PropertyName = "exchange_rate")]
public ExchangeRate ExchangeRate { get; set; }
#endregion
}