@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
31 lines (30 loc) • 541 B
TypeScript
/**
* Example:
*
* ```
* {
* partyIdHint: 'alice',
* displayName: 'Alice'
* }
* ```
*/
export interface AllocatePartyRequest {
/**
* A hint to the backing participant what party id to allocate.
*
* It can be ignored.
*
* Must be a valid party identifier.
*
* Optional
*/
partyIdHint?: string;
/**
* Human readable name of the party to be added to the participant.
*
* It doesn't have to be unique.
*
* Optional
*/
displayName?: string;
}