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.DogeAPI
Assembly: VEDriversLite.dll
Syntax
public class RpcResponse
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> |
Error
Object containing any error information.
Declaration
[JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public object Error { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Id
Identifier of RCP caller
Declaration
[JsonProperty("id", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 |