object parties extends Helpful
- Annotations
- @Summary(s = "Manage parties through the Ledger API", flag = FeatureFlag.Testing) @Group(name = "Party Management")
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- parties
- Helpful
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def allocate(party: String, displayName: String, annotations: Map[String, String] = Map.empty, identityProviderId: String = ""): PartyDetails
- Annotations
- @Summary(s = "Allocate a new party", flag = FeatureFlag.Testing) @Description(s = """Allocates a new party on the ledger.
party: a hint for generating the party identifier
displayName: a human-readable name of this party
annotations: key-value pairs associated with this party and stored locally on this Ledger API server
identityProviderId: identity provider id""")
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def help(methodName: String)(implicit consoleEnvironment: ConsoleEnvironment): Unit
- Definition Classes
- Helpful
- Annotations
- @Summary(s = "Help for specific commands (use help() or help(\"method\") for more information)", flag = console.this.Help.Summary.<init>$default$2) @Topic(t = Seq("Top-level Commands"))
- def help()(implicit consoleEnvironment: ConsoleEnvironment): Unit
- Definition Classes
- Helpful
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def list(identityProviderId: String = ""): Seq[PartyDetails]
- Annotations
- @Summary(s = "List parties known by the Ledger API server", flag = FeatureFlag.Testing) @Description(s = """Lists parties known by the Ledger API server.
identityProviderId: identity provider id""")
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def update(party: PartyId, modifier: (PartyDetails) => PartyDetails, identityProviderId: String = ""): PartyDetails
- Annotations
- @Summary(s = "Update participant-local party details", flag = console.this.Help.Summary.<init>$default$2) @Description(s = """Currently you can update only the annotations.
|You cannot update other user attributes.
party: party to be updated,
modifier: a function to modify the party details, e.g.: `partyDetails => { partyDetails.copy(annotations = partyDetails.annotations.updated("a", "b").removed("c")) }`
identityProviderId: identity provider id""")
- def update_idp(party: PartyId, sourceIdentityProviderId: String, targetIdentityProviderId: String): Unit
- Annotations
- @Summary(s = "Update party's identity provider id", flag = FeatureFlag.Testing) @Description(s = """Updates party's identity provider id.
party: party to be updated
sourceIdentityProviderId: source identity provider id
targetIdentityProviderId: target identity provider id
""")
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])