-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNodeStatusResponse.cs
57 lines (39 loc) · 1.31 KB
/
NodeStatusResponse.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using Newtonsoft.Json;
namespace FluxApi.SDK;
public class NodeStatusResponse
{
[JsonProperty("status")]
public string Status { get; set; }
[JsonProperty("collateral")]
public string Collateral { get; set; }
[JsonProperty("txhash")]
public string Txhash { get; set; }
[JsonProperty("outidx")]
public string Outidx { get; set; }
[JsonProperty("ip")]
public string Ip { get; set; }
[JsonProperty("network")]
public string Network { get; set; }
[JsonProperty("added_height")]
public int AddedHeight { get; set; }
[JsonProperty("confirmed_height")]
public int ConfirmedHeight { get; set; }
[JsonProperty("last_confirmed_height")]
public int LastConfirmedHeight { get; set; }
[JsonProperty("last_paid_height")]
public int LastPaidHeight { get; set; }
[JsonProperty("tier")]
public string Tier { get; set; }
[JsonProperty("payment_address")]
public string PaymentAddress { get; set; }
[JsonProperty("pubkey")]
public string Pubkey { get; set; }
[JsonProperty("activesince")]
public string Activesince { get; set; }
[JsonProperty("lastpaid")]
public string Lastpaid { get; set; }
[JsonProperty("amount")]
public string Amount { get; set; }
[JsonProperty("rank")]
public int Rank { get; set; }
}