Package com.daml.ledger.javaapi.data
Class Template
- java.lang.Object
-
- com.daml.ledger.javaapi.data.Template
-
public abstract class Template extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Template()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract CreateCommand
create()
abstract CreateAnd
createAnd()
Set up aCreateAndExerciseCommand
; invoke anexercise
method on the result of this to finish creating the command, or convert to an interface first withtoInterface
to invoke an interfaceexercise
method.abstract DamlRecord
toValue()
-
-
-
Method Detail
-
create
public abstract CreateCommand create()
-
toValue
public abstract DamlRecord toValue()
-
createAnd
public abstract CreateAnd createAnd()
Set up aCreateAndExerciseCommand
; invoke anexercise
method on the result of this to finish creating the command, or convert to an interface first withtoInterface
to invoke an interfaceexercise
method.
-
-