mirror of
https://github.com/bitwarden/server.git
synced 2025-05-30 07:44:50 -05:00
22 lines
533 B
C#
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; }
|
|
}
|