Generated by DocFX

Class GetTxsResponse

Object containing an array of transaction objects

Inheritance
System.Object
GetTxsResponse
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 GetTxsResponse

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

PagesTotal

Number of pages of transactions

Declaration
[JsonProperty("pagesTotal", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? PagesTotal { get; set; }
Property Value
Type Description
System.Nullable<System.Double>
| Improve this Doc View Source

Txs

Array of transaction objects

Declaration
[JsonProperty("txs", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<GetTxResponse> Txs { get; set; }
Property Value
Type Description
System.Collections.Generic.ICollection<GetTxResponse>