-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: agent options for experimental features
- Loading branch information
1 parent
0802fb7
commit fb38cfd
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...dk/src/commonMain/kotlin/io/iohk/atala/prism/walletsdk/prismagent/helpers/AgentOptions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |