Class TransactionResponseObject
Inheritance
System.Object
TransactionResponseObject
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.DogeAPI
Assembly: VEDriversLite.dll
Syntax
public class TransactionResponseObject
Properties
| Improve this Doc View SourceBlockHash
Blockhash of transaction
Declaration
[JsonProperty("blockhash", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string BlockHash { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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> |
Locktime
Transaction locktime
Declaration
[JsonProperty("locktime", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int Locktime { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Network
TxId of transaction
Declaration
[JsonProperty("network", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Network { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Size
Block height of this transaction
Declaration
[JsonProperty("size", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Size { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Time
Block time of this transaction
Declaration
[JsonProperty("time", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Time { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
TxHex
Blockhash of transaction
Declaration
[JsonProperty("tx_hex", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string TxHex { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 int Version { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Vin
Array of transaction inputs
Declaration
[JsonProperty("inputs", 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("outputs", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<Vout> Vout { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<Vout> |