Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ sealed class SimprintsRequest {
* @param projectId identifies the project that is making the call-out. Will be checked if it matches the scanned project id upon signing-in.
* @param userId identifies which user is making a request to Simprints ID. Can be any arbitrary String.
* @param moduleId identifies which module to register into.
* @param metadata optional metadata to attach to the registration if provided.
* @param metadata optional metadata to attach to the identification if provided.
*/
data class Identify(
override val projectId: String,
Expand All @@ -87,7 +87,7 @@ sealed class SimprintsRequest {
* @param userId identifies which user is making a request to Simprints ID. Can be any arbitrary String.
* @param moduleId identifies which module to register into.
* @param verifyId identifies which registered beneficiary to verify.
* @param metadata optional metadata to attach to the registration if provided.
* @param metadata optional metadata to attach to the verification if provided.
*/
data class Verify(
override val projectId: String,
Expand All @@ -113,7 +113,7 @@ sealed class SimprintsRequest {
* @param userId identifies which user is making a request to Simprints ID. Can be any arbitrary String.
* @param sessionId identifies the identification session.
* @param selectedGuid the GUID that was confirmed in the host app.
* @param metadata optional metadata to attach to the registration if provided.
* @param metadata optional metadata to attach to the confirmation if provided.
*/
data class ConfirmIdentity(
override val projectId: String,
Expand Down