Table of Contents

Class Result14

Namespace
Thirdweb.Api
Assembly
Thirdweb.dll
public class Result14
Inheritance
Result14
Inherited Members

Properties

AdditionalProperties

[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

Property Value

IDictionary<string, object>

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

object

Error

Error message if the contract read operation failed.

[JsonProperty("error", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Error { get; set; }

Property Value

string

Success

Indicates whether the contract read operation was successful.

[JsonProperty("success", Required = Required.Always)]
public bool Success { get; set; }

Property Value

bool