MakeMoveVectorInterface
type MakeMoveVectorInterface
Command to build a move vector out of a set of individual elements
BCS
The BCS serialized form for this type is defined by the following ABNF:
```text make-move-vector = (option type-tag) (vector argument) ```
type MakeMoveVectorInterface interface {
// The set individual elements to build the vector with
Elements() []*Argument
// Type of the individual elements
//
// This is required to be set when the type can't be inferred, for example
// when the set of provided arguments are all pure input values.
TypeTag() **TypeTag
}