VerifiedSubgraphResult

data class VerifiedSubgraphResult(val correct: Boolean, val message: String) : SubgraphResult(source)

Represents the result of a verified subgraph execution.

This class is used to encapsulate whether the subgraph execution was successful and provides a message describing the result, including potential issues or errors.

Constructors

Link copied to clipboard
constructor(correct: Boolean, message: String)

Properties

Link copied to clipboard

Indicates whether the subgraph execution was successful.

Link copied to clipboard

Describes the outcome of the execution. If the execution was unsuccessful, this property provides information on what went wrong.

Functions

Link copied to clipboard
open override fun toStringDefault(): String

Returns the string representation of this object in JSON format.