final case class Contract[+T](contractId: ContractId[T], value: T with Template[T], agreementText: Option[String], signatories: Seq[String], observers: Seq[String], key: Option[api.v1.value.Value]) extends Product with Serializable
A class representing a Daml contract of specific type (Daml template) with assigned contract ID and agreement text.
- T
Contract template type parameter.
- contractId
Contract ID.
- value
Contract instance as defined in Daml template (without
contractId
andagreementText
).- agreementText
Agreement text.
None
means that we did not receive theagreementText
from the server.Some("")
is a valid case, this means that the contract hasagreementText
set to an empty string or agreement was not defined in Daml, which defaults to an empty string.- signatories
Signatories of the contract as defined in the Daml template
- observers
Observers of the contract, both explicitly as defined in the Daml template and implicitly as choice controllers.
- key
The value of the key of this contract, if defined by the template.
- Alphabetic
- By Inheritance
- Contract
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Contract(contractId: ContractId[T], value: T with Template[T], agreementText: Option[String], signatories: Seq[String], observers: Seq[String], key: Option[api.v1.value.Value])
- contractId
Contract ID.
- value
Contract instance as defined in Daml template (without
contractId
andagreementText
).- agreementText
Agreement text.
None
means that we did not receive theagreementText
from the server.Some("")
is a valid case, this means that the contract hasagreementText
set to an empty string or agreement was not defined in Daml, which defaults to an empty string.- signatories
Signatories of the contract as defined in the Daml template
- observers
Observers of the contract, both explicitly as defined in the Daml template and implicitly as choice controllers.
- key
The value of the key of this contract, if defined by the template.