-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGestPayPaymentSettings.cs
More file actions
40 lines (37 loc) · 1.25 KB
/
Copy pathGestPayPaymentSettings.cs
File metadata and controls
40 lines (37 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using Nop.Core.Configuration;
namespace Nop.Plugin.Payments.GestPay
{
public class GestPayPaymentSettings : ISettings
{
public bool UseSandbox { get; set; }
public bool UseStarter { get; set; }
/// <summary>
/// Get or sets BancaSella Operator Code
/// </summary>
public string ShopOperatorCode { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to "additional fee" is specified as percentage. true - percentage, false - fixed value.
/// </summary>
public bool AdditionalFeePercentage { get; set; }
/// <summary>
/// Additional fee
/// </summary>
public decimal AdditionalFee { get; set; }
/// <summary>
/// Codice UIC valuta
/// </summary>
public int CurrencyUiCcode { get; set; }
/// <summary>
/// Codice lingua
/// </summary>
public int LanguageCode { get; set; }
/// <summary>
/// Api Key
/// </summary>
public string ApiKey { get; set; }
/// <summary>
/// Gets or Sets Guaranteed Payment
/// </summary>
public bool EnableGuaranteedPayment { get; set; }
}
}