mirror of
https://github.com/bitwarden/server.git
synced 2025-05-25 13:24:50 -05:00

* Set automatic tax to enabled and tax exempt to reverse where applicable when ff is on * Fix and add tests * Run dotnet format * Run dotnet format * PM-21745: Resolve defect * PM-21770: Resolve defect * Run dotnet format'
105 lines
3.5 KiB
C#
105 lines
3.5 KiB
C#
namespace Bit.Core.Billing.Constants;
|
|
|
|
public static class StripeConstants
|
|
{
|
|
public static class AutomaticTaxStatus
|
|
{
|
|
public const string Failed = "failed";
|
|
public const string NotCollecting = "not_collecting";
|
|
public const string Supported = "supported";
|
|
public const string UnrecognizedLocation = "unrecognized_location";
|
|
}
|
|
|
|
public static class CollectionMethod
|
|
{
|
|
public const string ChargeAutomatically = "charge_automatically";
|
|
public const string SendInvoice = "send_invoice";
|
|
}
|
|
|
|
public static class CouponIDs
|
|
{
|
|
public const string LegacyMSPDiscount = "msp-discount-35";
|
|
public const string SecretsManagerStandalone = "sm-standalone";
|
|
|
|
public static class MSPDiscounts
|
|
{
|
|
public const string Open = "msp-open-discount";
|
|
public const string Silver = "msp-silver-discount";
|
|
public const string Gold = "msp-gold-discount";
|
|
}
|
|
}
|
|
|
|
public static class ErrorCodes
|
|
{
|
|
public const string CustomerTaxLocationInvalid = "customer_tax_location_invalid";
|
|
public const string PaymentMethodMicroDepositVerificationAttemptsExceeded = "payment_method_microdeposit_verification_attempts_exceeded";
|
|
public const string PaymentMethodMicroDepositVerificationDescriptorCodeMismatch = "payment_method_microdeposit_verification_descriptor_code_mismatch";
|
|
public const string PaymentMethodMicroDepositVerificationTimeout = "payment_method_microdeposit_verification_timeout";
|
|
public const string TaxIdInvalid = "tax_id_invalid";
|
|
}
|
|
|
|
public static class InvoiceStatus
|
|
{
|
|
public const string Draft = "draft";
|
|
public const string Open = "open";
|
|
public const string Paid = "paid";
|
|
}
|
|
|
|
public static class MetadataKeys
|
|
{
|
|
public const string BraintreeCustomerId = "btCustomerId";
|
|
public const string InvoiceApproved = "invoice_approved";
|
|
public const string OrganizationId = "organizationId";
|
|
public const string ProviderId = "providerId";
|
|
public const string UserId = "userId";
|
|
}
|
|
|
|
public static class PaymentBehavior
|
|
{
|
|
public const string DefaultIncomplete = "default_incomplete";
|
|
}
|
|
|
|
public static class PaymentMethodTypes
|
|
{
|
|
public const string Card = "card";
|
|
public const string USBankAccount = "us_bank_account";
|
|
}
|
|
|
|
public static class Prices
|
|
{
|
|
public const string StoragePlanPersonal = "personal-storage-gb-annually";
|
|
}
|
|
|
|
public static class ProrationBehavior
|
|
{
|
|
public const string AlwaysInvoice = "always_invoice";
|
|
public const string CreateProrations = "create_prorations";
|
|
public const string None = "none";
|
|
}
|
|
|
|
public static class SubscriptionStatus
|
|
{
|
|
public const string Trialing = "trialing";
|
|
public const string Active = "active";
|
|
public const string Incomplete = "incomplete";
|
|
public const string IncompleteExpired = "incomplete_expired";
|
|
public const string PastDue = "past_due";
|
|
public const string Canceled = "canceled";
|
|
public const string Unpaid = "unpaid";
|
|
public const string Paused = "paused";
|
|
}
|
|
|
|
public static class TaxExempt
|
|
{
|
|
public const string Exempt = "exempt";
|
|
public const string None = "none";
|
|
public const string Reverse = "reverse";
|
|
}
|
|
|
|
public static class ValidateTaxLocationTiming
|
|
{
|
|
public const string Deferred = "deferred";
|
|
public const string Immediately = "immediately";
|
|
}
|
|
}
|