corda / net.corda.core.flows / NotarisationPayload

NotarisationPayload

data class NotarisationPayload

Container for the transaction and notarisation request signature. This is the payload that gets sent by a client to a notary service for committing the input states of the transaction.

Constructors

<init>

Container for the transaction and notarisation request signature. This is the payload that gets sent by a client to a notary service for committing the input states of the transaction.

NotarisationPayload(transaction: Any, requestSignature: NotarisationRequestSignature)

Properties

coreTransaction

A helper for automatically casting the underlying transaction payload to a CoreTransaction. Should only be used by non-validating notaries.

val coreTransaction: CoreTransaction

requestSignature

val requestSignature: NotarisationRequestSignature

signedTransaction

A helper for automatically casting the underlying transaction payload to a SignedTransaction. Should only be used by validating notaries.

val signedTransaction: SignedTransaction

transaction

val transaction: Any