ClaimType

A sealed class representing different types of claims.

Inheritors

Types

Link copied to clipboard
data class BoolValue(val value: Boolean) : ClaimType

Represents a boolean value as a claim type.

Link copied to clipboard
data class DataValue(val value: ByteArray) : ClaimType

Represents a data value with a byte array.

Link copied to clipboard
data class NumberValue(val value: Double) : ClaimType

Represents a numeric value for a claim.

Link copied to clipboard
data class StringValue(val value: String) : ClaimType

A data class representing a string value.

Functions

Link copied to clipboard
open operator override fun compareTo(other: ClaimType): Int

Compares this ClaimType object with the specified other object for order.