2022-07-15 17:10:56 +01:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2022-08-29 14:53:16 -04:00
|
|
|
|
namespace Bit.Billing.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public class FreshdeskWebhookModel
|
2022-07-15 17:10:56 +01:00
|
|
|
|
{
|
2022-08-29 14:53:16 -04:00
|
|
|
|
[JsonPropertyName("ticket_id")]
|
|
|
|
|
|
public string TicketId { get; set; }
|
2022-07-15 17:10:56 +01:00
|
|
|
|
|
2022-08-29 14:53:16 -04:00
|
|
|
|
[JsonPropertyName("ticket_contact_email")]
|
|
|
|
|
|
public string TicketContactEmail { get; set; }
|
2022-07-15 17:10:56 +01:00
|
|
|
|
|
2022-08-29 14:53:16 -04:00
|
|
|
|
[JsonPropertyName("ticket_tags")]
|
|
|
|
|
|
public string TicketTags { get; set; }
|
2022-07-15 17:10:56 +01:00
|
|
|
|
}
|