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

com.digitalasset.ledger.client.binding.DomainTransaction.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.{CommandId, TransactionId, WorkflowId}
import com.daml.ledger.api.v1.ledger_offset.LedgerOffset
import com.google.protobuf.timestamp.Timestamp

case class DomainTransaction(
    transactionId: TransactionId,
    workflowId: WorkflowId,
    offset: LedgerOffset,
    commandId: CommandId,
    effectiveAt: Timestamp,
    events: Seq[DomainEvent],
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy