Class Result14
public class Result14
- Inheritance
-
Result14
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Data
The result of the contract read operation. The type and format depend on the method's return value as defined in the contract ABI.
[JsonProperty("data", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public object Data { get; set; }
Property Value
Error
Error message if the contract read operation failed.
[JsonProperty("error", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Error { get; set; }
Property Value
Success
Indicates whether the contract read operation was successful.
[JsonProperty("success", Required = Required.Always)]
public bool Success { get; set; }