corda / net.corda.finance.contracts.asset / Cash / Commands / Move

Move

data class Move : MoveCommand

A command stating that money has been moved, optionally to fulfil another contract.

Parameters

contract - the contract this move is for the attention of. Only that contract's verify function should take the moved states into account when considering whether it is valid. Typically this will be null.

Constructors

<init>

A command stating that money has been moved, optionally to fulfil another contract.

Move(contract: Class<out Contract>? = null)

Properties

contract

the contract this move is for the attention of. Only that contract's verify function should take the moved states into account when considering whether it is valid. Typically this will be null.

val contract: Class<out Contract>?