Class GetSyncResponse
Object containing node sync status
Inheritance
System.Object
GetSyncResponse
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 GetSyncResponse
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> |
BlockChainHeight
Current blockchain height
Declaration
[JsonProperty("blockChainHeight", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? BlockChainHeight { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Error
Recent sync error messages
Declaration
[JsonProperty("error", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Error { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Height
Height node is synced to
Declaration
[JsonProperty("height", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? Height { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Status
Current sync status
Declaration
[JsonProperty("status", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Status { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SyncPercentage
Current sync percentage
Declaration
[JsonProperty("syncPercentage", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double? SyncPercentage { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Type
Node type
Declaration
[JsonProperty("type", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |