@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
30 lines (29 loc) • 552 B
TypeScript
/**
* Example:
*
* ```
* {
* party: 'alice',
* displayName: 'Alice',
* isLocal: false
* }
* ```
*/
export interface PartyDetails {
/**
* The stable unique identifier of a DAML party.
* Must be a valid party identifier.
* Required
*/
party: string;
/**
* Human readable name associated with the party. Caution, it might not be unique.
* Optional
*/
displayName?: string;
/**
* true if party is hosted by the backing participant.
* Required
*/
isLocal: boolean;
}