Package-level declarations

Types

Link copied to clipboard
data class AuthBiometricCredential(val value: String?)

Data class representing the biometric credential response.

Link copied to clipboard

Enum class represents the status of the biometric credential.

Link copied to clipboard
data class BiometricTokenRequest(val username: String, val biometricData: String, val scope: String?)

Data class representing the login with biometric data request.

Link copied to clipboard
data class DeleteBiometricCredentialResponse(val isSuccess: Boolean)

Data class representing the response of an delete biometric credential operation.

Link copied to clipboard
data class PasswordTokenRequest(val username: String, val password: String, val scope: String?)

Data class representing the login with password request.

Link copied to clipboard
data class PinTokenRequest(val username: String, val pin: String, val scope: String?)

Data class representing the login with password request.

Link copied to clipboard
data class RefreshTokenRequest(val refreshToken: String, val scope: String? = null)

Data class representing the refresh token request.

Link copied to clipboard
data class Token(val accessToken: String, val expiresIn: Int?, val refreshToken: String?, val refreshTokenExpiresIn: Int?, val tokenType: String, val idToken: String?, val scope: String?)

Data class representing a response to a successful token request.