From b9c174c8624100ee3fb90c18b769e85b946c5f97 Mon Sep 17 00:00:00 2001 From: Sergejs Luhmirins Date: Tue, 23 Sep 2025 17:43:13 +0300 Subject: [PATCH] Update metadata parameter wording in the KDoc comments --- .../simprints/libsimprints/contracts/SimprintsRequest.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/simprints/libsimprints/contracts/SimprintsRequest.kt b/src/main/java/com/simprints/libsimprints/contracts/SimprintsRequest.kt index 6c76fa7..4e1c108 100644 --- a/src/main/java/com/simprints/libsimprints/contracts/SimprintsRequest.kt +++ b/src/main/java/com/simprints/libsimprints/contracts/SimprintsRequest.kt @@ -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, @@ -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, @@ -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,