AuthResponseSingle

data class AuthResponseSingle(val allow: Boolean = false, val valid: Boolean = false, val error: Error? = null)

Data class representing a single authorization response within a batch.

Constructors

Link copied to clipboard
constructor(allow: Boolean = false, valid: Boolean = false, error: Error? = null)

Properties

Link copied to clipboard
val allow: Boolean = false

whether the request is allowed.

Link copied to clipboard
val error: Error? = null

the error encountered during the authorization request.

Link copied to clipboard
val valid: Boolean = false

whether the request is valid.