Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions DotNut/ApiModels/GetKeysResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ public class KeysetItemResponse
{
[JsonPropertyName("id")] public KeysetId Id { get; set; }
[JsonPropertyName("unit")] public string Unit { get; set; }
[JsonPropertyName("active")] public bool? Active { get; set; } // nullable until wider adoption
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
[JsonPropertyName("input_fee_ppk")] public ulong? InputFeePpk { get; set; }
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
[JsonPropertyName("final_expiry")] public ulong? FinalExpiry { get; set; }
[JsonPropertyName("keys")] public Keyset Keys { get; set; }
Expand Down