mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
25 lines
637 B
C#
25 lines
637 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Bit.Billing.Models;
|
|
|
|
public class FreshdeskWebhookModel
|
|
{
|
|
[JsonPropertyName("ticket_id")]
|
|
public string TicketId { get; set; }
|
|
|
|
[JsonPropertyName("ticket_contact_email")]
|
|
public string TicketContactEmail { get; set; }
|
|
|
|
[JsonPropertyName("ticket_tags")]
|
|
public string TicketTags { get; set; }
|
|
}
|
|
|
|
public class FreshdeskOnyxAiWebhookModel : FreshdeskWebhookModel
|
|
{
|
|
[JsonPropertyName("ticket_description_text")]
|
|
public string TicketDescriptionText { get; set; }
|
|
}
|