LRResult

data class LRResult(val success: Boolean, val error: LRSafeRiderError? = null, val message: String? = null)

Result of a SafeRider operation.

Constructors

Link copied to clipboard
constructor(success: Boolean, error: LRSafeRiderError? = null, message: String? = null)

Properties

Link copied to clipboard
val error: LRSafeRiderError? = null

Optional error when the operation failed.

Link copied to clipboard
val message: String? = null

Optional message describing the outcome.

Link copied to clipboard

True if the operation succeeded.