Class GetTxResponse
Inheritance
System.Object
GetTxResponse
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 GetTxResponse
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> |
Blockhash
Hash of the block this transaction is in
Declaration
[JsonProperty("blockhash", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Blockhash { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Blockheight
Block height of this transaction
Declaration
[JsonProperty("blockheight", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Blockheight { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Blocktime
Block time of this transaction
Declaration
[JsonProperty("blocktime", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Blocktime { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Confirmations
Number of transaction confirmations
Declaration
[JsonProperty("confirmations", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Confirmations { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Fee
Total NEBL used as fee for this transcation in satoshis
Declaration
[JsonProperty("fee", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Fee { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Fees
Total NEBL used in fees for this transaction
Declaration
[JsonProperty("fees", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Fees { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Locktime
Transaction locktime
Declaration
[JsonProperty("locktime", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Locktime { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Size
Transcation size in bytes
Declaration
[JsonProperty("size", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Size { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Time
Transaction time
Declaration
[JsonProperty("time", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Time { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Totalsent
Total NEBL sent in this transaction in satoshis
Declaration
[JsonProperty("totalsent", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Totalsent { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Txid
TXID of transaction
Declaration
[JsonProperty("txid", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Txid { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ValueIn
Total NEBL input in this transaction
Declaration
[JsonProperty("valueIn", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? ValueIn { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
ValueOut
Total NEBL output in this transaction
Declaration
[JsonProperty("valueOut", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? ValueOut { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Version
Transaction version
Declaration
[JsonProperty("version", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Version { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Vin
Array of transaction inputs
Declaration
[JsonProperty("vin", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<Vin2> Vin { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Vin2> |
Vout
Array of transaction outputs
Declaration
[JsonProperty("vout", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<Vout2> Vout { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Vout2> |