Skip to content

Commit

Permalink
docs: agent options for experimental features
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianIOHK committed Apr 29, 2024
1 parent 0802fb7 commit fb38cfd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import kotlin.jvm.Throws
* @property experimentLiveModeOptIn Flag to opt in or out of the experimental feature mediator live mode, using websockets.
* @property pairings The mutable list of DIDPair representing the connections managed by the ConnectionManager.
*/
class ConnectionManager(
class ConnectionManager @JvmOverloads constructor(
private val mercury: Mercury,
private val castor: Castor,
private val pluto: Pluto,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
package io.iohk.atala.prism.walletsdk.prismagent.helpers

/**
* Class that represent agent options that the SDK user can define to modify some behaviors of the SDK.
* @param experiments Represents the experimental features available
*/
data class AgentOptions(val experiments: Experiments = Experiments())

/**
* Class to define experimental features available within the SDK.
* @param liveMode Flag to enable or disable the live mode to listen for messages from the mediator.
*/
data class Experiments(val liveMode: Boolean = false)

0 comments on commit fb38cfd

Please sign in to comment.