UNPKG

@digitalasset/daml-ledger

Version:
20 lines (19 loc) 357 B
/** * 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; }