Webiant Logo Webiant Logo
  1. No results found.

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

Payee.cs

using Newtonsoft.Json;

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

/// 
/// Represents the merchant who receives the funds and fulfills the order. The merchant is also known as the payee.
/// 
public class Payee
{
    #region Properties

    /// 
    /// Gets or sets the email address of merchant.
    /// 
    [JsonProperty(PropertyName = "email_address")]
    public string EmailAddress { get; set; }

    /// 
    /// Gets or sets the encrypted PayPal account ID of the merchant.
    /// 
    [JsonProperty(PropertyName = "merchant_id")]
    public string MerchantId { get; set; }

    #endregion
}