All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.digitalasset.ledger.client.binding.DomainEvent.scala Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
// Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

package com.daml.ledger.client.binding

import com.daml.ledger.api.refinements.ApiTypes._

import scala.collection.immutable

sealed trait DomainEvent {

  /** The id of the event */
  def eventId: EventId

  /** The id of the target contract */
  def contractId: ContractId

  /** The template ID of the target contract */
  def templateId: TemplateId

  /** Which parties are notified of the events */
  def witnessParties: immutable.Seq[Party]
}

final case class DomainCreatedEvent(
    eventId: EventId,
    contractId: ContractId,
    templateId: TemplateId,
    witnessParties: immutable.Seq[Party],
    createArguments: CreateArguments,
    contractData: Contract.OfAny,
) extends DomainEvent

final case class DomainArchivedEvent(
    eventId: EventId,
    contractId: ContractId,
    templateId: TemplateId,
    witnessParties: immutable.Seq[Party],
) extends DomainEvent




© 2015 - 2024 Weber Informatics LLC | Privacy Policy