Generated by DocFX

Class RpcResponse

Object containing the JSON response from the Neblio node.

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

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

Error

Object containing any error information.

Declaration
[JsonProperty("error")]
public object Error { get; set; }
Property Value
Type Description
System.Object
| Improve this Doc View Source

Id

Identifier of RCP caller

Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Result

Object containing the response output.

Declaration
[JsonProperty("result", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public object Result { get; set; }
Property Value
Type Description
System.Object