mirror of
https://github.com/bitwarden/server.git
synced 2025-07-19 16:37:08 -05:00
48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Billing.Models;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
public class FreshdeskViewTicketModel
|
|
{
|
|
[JsonPropertyName("spam")]
|
|
public bool? Spam { get; set; }
|
|
|
|
[JsonPropertyName("priority")]
|
|
public int? Priority { get; set; }
|
|
|
|
[JsonPropertyName("source")]
|
|
public int? Source { get; set; }
|
|
|
|
[JsonPropertyName("status")]
|
|
public int? Status { get; set; }
|
|
|
|
[JsonPropertyName("subject")]
|
|
public string Subject { get; set; }
|
|
|
|
[JsonPropertyName("support_email")]
|
|
public string SupportEmail { get; set; }
|
|
|
|
[JsonPropertyName("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("description")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonPropertyName("description_text")]
|
|
public string DescriptionText { get; set; }
|
|
|
|
[JsonPropertyName("created_at")]
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
[JsonPropertyName("updated_at")]
|
|
public DateTime UpdatedAt { get; set; }
|
|
|
|
[JsonPropertyName("tags")]
|
|
public List<string> Tags { get; set; }
|
|
}
|