1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-30 07:44:50 -05:00
bitwarden/src/Billing/Models/StripeWebhookDeliveryContainer.cs
2024-09-06 13:30:39 -04:00

22 lines
533 B
C#

using System.Text.Json.Serialization;
namespace Bit.Billing.Models;
public class StripeWebhookDeliveryContainer
{
[JsonPropertyName("id")]
public string Id { get; set; }
[JsonPropertyName("api_version")]
public string ApiVersion { get; set; }
[JsonPropertyName("request")]
public StripeWebhookRequestData Request { get; set; }
[JsonPropertyName("type")]
public string Type { get; set; }
}
public class StripeWebhookRequestData
{
[JsonPropertyName("id")]
public string Id { get; set; }
}