Generated by DocFX

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 Source

BlockHash

Blockhash of transaction

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

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

Locktime

Transaction locktime

Declaration
[JsonProperty("locktime", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int Locktime { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Network

TxId of transaction

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

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

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

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
| 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

Version

Transaction version

Declaration
[JsonProperty("version", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int Version { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

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

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>