Class GetAddressResponse
Inheritance
System.Object
GetAddressResponse
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VEDriversLite.NeblioAPI
Assembly: VEDriversLite.NeblioAPI.dll
Syntax
public class GetAddressResponse
Properties
| Improve this Doc View SourceAdditionalProperties
Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
AddrStr
Address in string form
Declaration
[JsonProperty("addrStr", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string AddrStr { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Balance
NEBL balance
Declaration
[JsonProperty("balance", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Balance { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
BalanceSat
NEBL balance in satoshis
Declaration
[JsonProperty("balanceSat", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? BalanceSat { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
TotalReceived
Total NEBL received
Declaration
[JsonProperty("totalReceived", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? TotalReceived { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
TotalReceivedSat
Total NEBL received in satoshis
Declaration
[JsonProperty("totalReceivedSat", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? TotalReceivedSat { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
TotalSent
Total NEBL sent
Declaration
[JsonProperty("totalSent", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? TotalSent { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
TotalSentSat
Total NEBL sent satoshis
Declaration
[JsonProperty("totalSentSat", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? TotalSentSat { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Transactions
Array of transaction ids for this address
Declaration
[JsonProperty("transactions", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> Transactions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<System.String> |
TxAppearances
Number of transactions for this address
Declaration
[JsonProperty("txAppearances", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? TxAppearances { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
UnconfirmedBalance
Unconfirmed NEBL balance
Declaration
[JsonProperty("unconfirmedBalance", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? UnconfirmedBalance { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
UnconfirmedBalanceSat
Unconfirmed NEBL balance in satoshis
Declaration
[JsonProperty("unconfirmedBalanceSat", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? UnconfirmedBalanceSat { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
UnconfirmedTxAppearances
Number of unconfirmed transactions for this address
Declaration
[JsonProperty("unconfirmedTxAppearances", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? UnconfirmedTxAppearances { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |