Class GetTransactionInfoResponse
Inheritance
System.Object
GetTransactionInfoResponse
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 GetTransactionInfoResponse
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")]
public double? Fee { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Hex
Transaction in raw hex
Declaration
[JsonProperty("hex", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Hex { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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> |
MetadataOfUtxos
Number of transaction confirmations
Declaration
[JsonProperty("metadataOfUtxos")]
public MetadataOfUtxo MetadataOfUtxos { get; set; }
Property Value
Type | Description |
---|---|
MetadataOfUtxo |
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")]
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 |
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<Vin> Vin { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Vin> |
Vout
Array of transaction outputs
Declaration
[JsonProperty("vout", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<Vout> Vout { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Vout> |