Skip to main content

MoveViewResult

data class MoveViewResult(var error: String? = null, var results: List<String>? = null)

The result of executing a Move View Function.

Execution errors are captured in the error field, in which case the results field will be None. On success, the results field will contain the return values of the Move view function, and the error field will be None.

Constructors

MoveViewResultconstructor(error: String? = null, results: List<String>? = null)

Properties

NameSummary
errorvar error: String?
Execution error from executing the Move view function.
resultsvar results: List<String>?
The return values of the Move view function, resolved and formatted as JSON.