Generated by DocFX

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 Source

AdditionalProperties

Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>
| Improve this Doc View Source

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
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

Txid

TXID of transaction

Declaration
[JsonProperty("txid", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Txid { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>