From 9b734f2b9ae29588f0af07c85ba6093c4b96b9e2 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 26 May 2017 03:34:09 +0200 Subject: [PATCH] doc --- Yavsc/Settings/PayPalSettings.cs | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/Yavsc/Settings/PayPalSettings.cs b/Yavsc/Settings/PayPalSettings.cs index 88396709..d5681fd8 100644 --- a/Yavsc/Settings/PayPalSettings.cs +++ b/Yavsc/Settings/PayPalSettings.cs @@ -13,18 +13,38 @@ namespace Yavsc /// /// public string ClientId { get; set; } + /// /// For sandbox only? /// /// public string ClientSecret { get; set; } + /// + /// Your application id ... + /// + /// public string ApplicationId { get; set; } + + /// + /// Get it from your PayPal Business profile settings + /// + /// + public string MerchantAccountId { get; set; } + + /// + /// PayPal Classic Api credentials model + /// public class ClassicPayPalAccountApiCredential { public string Signature { get; set; } public string ApiUsername { get; set; } public string ApiPassword { get; set; } - } + + /// + /// Live access is configured at: + /// https://www.paypal.com/businessprofile/mytools/apiaccess + /// public ClassicPayPalAccountApiCredential[] Accounts { get; set; } + } }