Include issuer info in card prepare response
All checks were successful
build-and-deploy / build-deploy (push) Successful in 33s

This commit is contained in:
androidlover5842
2026-01-28 07:23:09 +05:30
parent 5552dc7900
commit 693642f91d
3 changed files with 14 additions and 5 deletions

View File

@@ -81,5 +81,8 @@ data class CardPrepareResponse(
val key: String,
val timeData: String,
val issuedAt: String,
val expiresAt: String
val expiresAt: String,
val issuerUserId: UUID? = null,
val issuerFirebaseUid: String? = null,
val issuerName: String? = null
)