mirror of
https://github.com/bitwarden/server
synced 2025-12-17 16:53:23 +00:00
* Upgrade Stripe.net * Don't process mismatched version webhooks * Manually handle API mismatch in Stripe webhook * Pivot webhook secret off webhook version
10 lines
201 B
C#
10 lines
201 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Bit.Billing.Models;
|
|
|
|
public class StripeWebhookVersionContainer
|
|
{
|
|
[JsonPropertyName("api_version")]
|
|
public string ApiVersion { get; set; }
|
|
}
|