UNPKG

@digitalasset/daml-ledger

Version:
30 lines (29 loc) 552 B
/** * 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; }