Hello everyone,
Here are the data I have:
data DeclaredResult = DeclaredResult
with
id : Text
issuer : Party
pD : Party
num1 : Decimal
num2 : Decimal
deriving (Eq, Show)
template FooDetails
with
custodian : Party
depository : Party
issuer : Party
info : FooInfo
sHoldingCid : ContractId Holding.I
where
signatory custodian, issuer, depository
key (custodian, info.id) : (Party, Text)
maintainer key._1
choice Finalize : ()
with
fooId : Text
declaredResults : [DeclaredResult]
controller custodian
do
…..
Since I only have a contractKey and no contractId:
How would I call the exerciseByKeyCommand method from the Java side to activate the Finalize choice? What parameters should I send?