namespace Yavsc { /// /// PayPal NV/SOAP API Credentials /// public class PayPalSettings { /// /// supported values: sandbox or production /// /// public string Mode { get; set; } /// /// /// public string ClientId { get; set; } /// /// For sandbox only? /// /// 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; } } public ClassicPayPalAccountApiCredential[] Accounts { get; set; } } }