mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 12:40:22 -05:00

* Pm 19147 2 (#5544) * Pm 19147 2 (#5544) * Unit tests for tax strategies `GetUpdateOptions` * Only allow automatic tax flag to be updated for complete subscription updates such as plan changes, not when upgrading additional storage, seats, etc * unit tests for factory * Fix build * Automatic tax for tax estimation * Fix stub * Fix stub * "customer.tax_ids" isn't expanded in some flows. * Fix SubscriberServiceTests.cs * BusinessUseAutomaticTaxStrategy > SetUpdateOptions tests * Fix ProviderBillingServiceTests.cs
90 lines
3.1 KiB
C#
90 lines
3.1 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 static class MetadataKeys
|
|
{
|
|
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 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 ValidateTaxLocationTiming
|
|
{
|
|
public const string Deferred = "deferred";
|
|
public const string Immediately = "immediately";
|
|
}
|
|
}
|