2017-04-26 20:29:25 +02:00
|
|
|
|
namespace Bit.Billing
|
|
|
|
|
{
|
|
|
|
|
public class BillingSettings
|
|
|
|
|
{
|
2018-07-13 05:23:41 +02:00
|
|
|
|
public virtual string JobsKey { get; set; }
|
2017-04-26 20:29:25 +02:00
|
|
|
|
public virtual string StripeWebhookKey { get; set; }
|
2017-08-13 04:30:44 +02:00
|
|
|
|
public virtual string StripeWebhookSecret { get; set; }
|
2019-02-22 04:54:53 +01:00
|
|
|
|
public virtual string BitPayWebhookKey { get; set; }
|
2019-09-13 15:58:30 +02:00
|
|
|
|
public virtual string AppleWebhookKey { get; set; }
|
2020-02-06 22:03:02 +01:00
|
|
|
|
public virtual string FreshdeskWebhookKey { get; set; }
|
|
|
|
|
public virtual string FreshdeskApiKey { get; set; }
|
2019-02-02 04:25:34 +01:00
|
|
|
|
public virtual PayPalSettings PayPal { get; set; } = new PayPalSettings();
|
2019-02-01 23:16:28 +01:00
|
|
|
|
|
2019-02-02 04:25:34 +01:00
|
|
|
|
public class PayPalSettings
|
2019-02-01 23:16:28 +01:00
|
|
|
|
{
|
|
|
|
|
public virtual bool Production { get; set; }
|
2019-02-20 21:17:23 +01:00
|
|
|
|
public virtual string BusinessId { get; set; }
|
2019-02-08 20:28:36 +01:00
|
|
|
|
public virtual string WebhookKey { get; set; }
|
2019-02-01 23:16:28 +01:00
|
|
|
|
}
|
2017-04-26 20:29:25 +02:00
|
|
|
|
}
|
|
|
|
|
}
|