Updated on 2026-08-14
This commit is contained in:
parent
b8e40c6e73
commit
a0e708e46f
25 changed files with 333 additions and 147 deletions
|
|
@ -28,12 +28,23 @@ data class RegistrationResponse(
|
|||
val kycProvider: String?,
|
||||
@Json(name = "kyc_date")
|
||||
val kycDate: String?,
|
||||
@Json(name = "kyc_status")
|
||||
val kycStatus: KYCStatus?,
|
||||
@Json(name = "disabled_by_admin")
|
||||
val disabledByAdmin: Boolean?,
|
||||
val error: String?,
|
||||
)
|
||||
}
|
||||
|
||||
enum class KYCStatus {
|
||||
NOT_STARTED,
|
||||
STARTED,
|
||||
WAITING_FOR_APPROVAL,
|
||||
CORRECTION_REQUESTED,
|
||||
REJECTED,
|
||||
APPROVED,
|
||||
}
|
||||
|
||||
data class AttestationResponse(
|
||||
val challenge: ByteArray?,
|
||||
val success: Boolean,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue