UNPKG

@digitalasset/daml-ledger

Version:
18 lines (17 loc) 355 B
/** * Example: * * ``` * { * transactionId: 'some-tx-id' * } * ``` * * To express values in a more concise way, you can have a look at the {@link ValueHelpers}. */ export interface SubmitAndWaitForTransactionIdResponse { /** * The id of the transaction that resulted from the submitted command. */ transactionId: string; }