MoveCall

interface MoveCall

Command to call a Move function.

Functions that can be called by a MoveCall command are those that have a function signature that is either entry or public (which don't have a reference return type).

Properties

Link copied to clipboard
abstract val arguments: List<Argument>

The arguments to the function.

Link copied to clipboard
abstract val function: String?

The function to be called.

Link copied to clipboard
abstract val module: String?

The specific module in the package containing the function.

Link copied to clipboard
abstract val package: String?

The package containing the module and function.

Link copied to clipboard

Returns the field-presence view for this MoveCall instance.

Link copied to clipboard
abstract val typeArguments: List<String>

The type arguments to the function.

Functions

Link copied to clipboard
Link copied to clipboard
fun MoveCall.copy(body: <Error class: unknown class>.() -> Unit = {}): MoveCall

Copies the original message, including unknown fields.