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 and agreementText).

agreementText

Agreement text. None means that we did not receive the agreementText from the server. Some("") is a valid case, this means that the contract has agreementText 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.

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Contract
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. 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 and agreementText).

    agreementText

    Agreement text. None means that we did not receive the agreementText from the server. Some("") is a valid case, this means that the contract has agreementText 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.

Value Members

  1. val agreementText: Option[String]
  2. def arguments: Record
  3. val contractId: ContractId[T]
  4. val key: Option[api.v1.value.Value]
  5. val observers: Seq[String]
  6. def productElementNames: Iterator[String]
    Definition Classes
    Product
  7. val signatories: Seq[String]
  8. val value: T with Template[T]