Webiant Logo Webiant Logo
  1. No results found.

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

PlatformFee.cs

using Newtonsoft.Json;

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

/// 
/// Represents the platform fee
/// 
public class PlatformFee
{
    #region Properties

    /// 
    /// Gets or sets the fee for this transaction.
    /// 
    [JsonProperty(PropertyName = "amount")]
    public Money Amount { get; set; }

    /// 
    /// Gets or sets the recipient of the fee for this transaction. If you omit this value, the default is the API caller.
    /// 
    [JsonProperty(PropertyName = "payee")]
    public Payee Payee { get; set; }

    #endregion
}