@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
30 lines (29 loc) • 613 B
TypeScript
import { Identifier } from "./Identifier";
/**
* If no internal fields are set, no data will be returned.
*
* Example:
*
* ```
* {
* templateIds: [
* {
* packageId: 'some-package-id',
* moduleName: 'SomeModule',
* entityName: 'SomeTemplate'
* }
* ]
* }
* ```
*
* To express values in a more concise way, you can have a look at the {@link ValueHelpers}.
*
* @see Identifier
*/
export interface InclusiveFilters {
/**
* A collection of templates.
* SHOULD NOT contain duplicates.
*/
templateIds: Identifier[];
}