@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
20 lines (19 loc) • 357 B
TypeScript
/**
* A response model representing the identifier of a participant
*
* Example:
*
* ```
* {
* participantId: "some-participant-id"
* }
* ```
*
*/
export interface GetParticipantIdResponse {
/**
* Identifier of the participant, which SHOULD be globally unique.
* Must be a valid LedgerString
*/
participantId: string;
}