Use NVP/SOAP Api from PayPal

This commit is contained in:
Paul Schneider 2017-05-24 23:36:49 +02:00
commit e415e78aaa
33 changed files with 2382 additions and 631 deletions

View file

@ -1,14 +1,30 @@
namespace Yavsc
{
/// <summary>
/// PayPal NV/SOAP API Credentials
/// </summary>
public class PayPalSettings {
/// <summary>
/// supported values: <c>sandbox</c> or <c>production</c>
/// </summary>
/// <returns></returns>
public string Mode { get; set; }
public string Secret { get; set; }
/// <summary>
///
/// </summary>
public string ClientId { get; set; }
/// <summary>
/// For sandbox only?
/// </summary>
/// <returns></returns>
public string ClientSecret { get; set; }
public string ApplicationId { get; set; }
public class ClassicPayPalAccountApiCredential {
public string Signature { get; set; }
public string ApiUsername { get; set; }
public string ApiPassword { get; set; }
// NV/SOAP Api - Signature
public string UserId { get; set; }
public string Password { get; set; }
public string Signature { get; set; }
}
public ClassicPayPalAccountApiCredential[] Accounts { get; set; }
}
}