1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-02 13:53:23 +01:00
bitwarden-server/src/Billing/BillingSettings.cs

22 lines
811 B
C#
Raw Normal View History

namespace Bit.Billing
{
public class BillingSettings
{
public virtual string JobsKey { get; set; }
public virtual string StripeWebhookKey { get; set; }
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; }
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
}
}
}