mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 12:10:03 +01:00
40 lines
913 B
C#
40 lines
913 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
namespace ACMEv2
|
|
{
|
|
public class Order : IHasLocation
|
|
{
|
|
public Uri Location { get; set; }
|
|
|
|
[JsonProperty("status")]
|
|
public string Status { get; set; }
|
|
|
|
[JsonProperty("expires")]
|
|
public DateTime? Expires { get; set; }
|
|
|
|
[JsonProperty("identifiers")]
|
|
public OrderIdentifier[] Identifiers { get; set; }
|
|
|
|
[JsonProperty("notBefore")]
|
|
public DateTime? NotBefore { get; set; }
|
|
|
|
[JsonProperty("notAfter")]
|
|
public DateTime? NotAfter { get; set; }
|
|
|
|
[JsonProperty("error")]
|
|
public Problem Error { get; set; }
|
|
|
|
[JsonProperty("authorizations")]
|
|
public Uri[] Authorizations { get; set; }
|
|
|
|
[JsonProperty("finalize")]
|
|
public Uri Finalize { get; set; }
|
|
|
|
[JsonProperty("certificate")]
|
|
public Uri Certificate { get; set; }
|
|
}
|
|
|
|
}
|