MoveViewResult
type MoveViewResult
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`.
type MoveViewResult struct {
// Execution error from executing the Move view function.
Error *string
// The return values of the Move view function, resolved and formatted as
// JSON.
Results *[]string
}
func (*MoveViewResult) Destroy
func (r *MoveViewResult) Destroy()