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
| MoveViewResult | constructor(error: String? = null, results: List<String>? = null) |
Properties
| Name | Summary |
|---|---|
| error | var error: String? Execution error from executing the Move view function. |
| results | var results: List<String>? The return values of the Move view function, resolved and formatted as JSON. |