@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
27 lines (26 loc) • 599 B
TypeScript
/**
* Example:
*
* ```
* {
* eventId: 'some-event-id',
* requestingParties: [
* 'Alice',
* 'Bob'
* ]
* }
* ```
*
* To express values in a more concise way, you can have a look at the {@link ValueHelpers}.
*/
export interface GetTransactionByEventIdRequest {
/**
* The identifier of a particular event.
*/
eventId: string;
/**
* The parties whose events the client expects to see.
* Events that are not visible for the parties in this collection will not be present in the response.
*/
requestingParties: string[];
}