Class TransactionsResponse
Inheritance
object
    TransactionsResponse
  Inherited Members
      object.Equals(object)
    
    
      object.Equals(object, object)
    
    
      object.GetHashCode()
    
    
      object.GetType()
    
    
      object.MemberwiseClone()
    
    
      object.ReferenceEquals(object, object)
    
    
      object.ToString()
    
  Namespace: Algorand.Indexer.Model
Assembly: Algorand.dll
Syntax
public class TransactionsResponse
  Properties
| Improve this Doc View SourceCurrentRound
Declaration
[JsonProperty("current-round", Required = Required.Always)]
[Required]
public ulong CurrentRound { get; set; }
  Property Value
| Type | Description | 
|---|---|
| ulong | 
NextToken
Declaration
[JsonProperty("next-token", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string NextToken { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
Transactions
Declaration
[JsonProperty("transactions", Required = Required.Always)]
[Required]
public ICollection<Transaction> Transactions { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.ICollection<T><Transaction> |